modern-compiler-ml/tiger/chap7/temp.sig
jmug 33d8bac511 Add the tiger source code bundle from the book site
Signed-off-by: jmug <u.g.a.mariano@gmail.com>
2024-12-18 15:18:45 -08:00

11 lines
254 B
Standard ML

signature TEMP =
sig
eqtype temp
val newtemp : unit -> temp
structure Table : TABLE sharing type Table.key = temp
val makestring: temp -> string
type label = Symbol.symbol
val newlabel : unit -> label
val namedlabel : string -> label
end