src/Tools/SML/Example.sml
author wenzelm
Mon, 13 Apr 2020 22:08:14 +0200
changeset 71751 abf3e80bd815
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
tuned NEWS;

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end