src/Tools/SML/Example.sml
author wenzelm
Sat, 15 Aug 2015 17:38:20 +0200
changeset 60932 13ee73f57c85
parent 56276 9e2d5e3debd3
permissions -rw-r--r--
allow to break running threads at next possible breakpoint (simplified version of former option, see f3039309702e);

structure Example :> Example =
struct

type t = int

val a = 0
fun b x = x + 1

end