src/Tools/SML/Example.sml
author wenzelm
Mon, 25 Nov 2019 12:19:14 +0100
changeset 71163 b5822f4c3fde
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
tuned -- avoid deprecated constructors;

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end