src/Tools/SML/Example.sml
author wenzelm
Mon, 19 Feb 2024 16:25:06 +0100
changeset 79680 0b58e85906a1
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
tuned;

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end