src/Tools/SML/Example.sml
author wenzelm
Thu, 03 Apr 2014 13:46:18 +0200
changeset 56385 76acce58aeab
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
more general prover operations;

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end