src/Tools/SML/Example.sml
author boehmes
Mon, 30 Apr 2018 08:49:37 +0200
changeset 68057 7811d8828775
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
prefer explicit error message to unspecific Options exception: Z3 proof traces may lack information necessary for replay when dealing with quantified formulas

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end