src/Tools/SML/Example.sml
author wenzelm
Sun, 14 Aug 2022 12:18:06 +0200
changeset 75861 c32ecc4b4720
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
clarified theory_names with exported content;

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end