src/Tools/SML/Example.sml
author wenzelm
Thu, 26 Jun 2014 22:18:09 +0200
changeset 57392 f7a604a2fa63
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
updated to jdk-7u60 -- back to stable Java 7 for Isabelle2014 release;

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end