src/Tools/SML/Example.sml
author paulson
Sun, 20 Sep 2020 15:45:25 +0100
changeset 72271 7e90e1d178b5
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
merged

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end