src/Tools/SML/Example.sml
author wenzelm
Sat, 10 Jan 2015 16:35:21 +0100
changeset 59342 fd9102b419f5
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
merged

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end