src/Tools/SML/Example.sml
author wenzelm
Mon, 03 Apr 2017 21:17:47 +0200
changeset 65362 908a27a4b9c9
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
clarified imports;

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end