src/Tools/SML/Example.sml
author wenzelm
Mon, 24 Jan 2022 21:29:37 +0100
changeset 74995 68ffcf5cc94b
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
updated to polyml-test-15c840d48c9a;

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end