src/Tools/SML/Example.sml
author wenzelm
Fri, 23 Jun 2017 14:38:32 +0200
changeset 66176 b51a40281016
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
tuned signature;

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end