src/Tools/SML/Example.sml
author wenzelm
Sun, 12 Jan 2025 12:54:25 +0100
changeset 81773 5df6481f45f9
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
tuned comments;

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end