src/Tools/SML/Example.sml
author wenzelm
Sat, 11 Dec 2021 11:24:48 +0100
changeset 74913 c2a2be496f35
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
tuned;

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end