src/Tools/SML/Example.sml
author wenzelm
Tue, 13 Jun 2017 15:11:01 +0200
changeset 66081 441f95b05944
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
clarified modules;

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end