src/Tools/SML/Example.sml
author wenzelm
Sun, 29 Mar 2020 21:32:20 +0200
changeset 71622 ab5009192ebb
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
tuned signature -- follow Scala;

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end