src/Tools/SML/Example.sml
author wenzelm
Tue, 01 Nov 2016 01:20:33 +0100
changeset 64439 2bafda87b524
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
back to post-release mode -- after fork point;

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end