src/Tools/SML/Example.sml
author wenzelm
Mon, 11 Sep 2023 19:30:48 +0200
changeset 78659 b5f3d1051b13
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
tuned;

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end