src/Tools/SML/Example.sml
author wenzelm
Wed, 12 Feb 2025 14:26:43 +0100
changeset 82146 143ff9527bac
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
tuned;

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end