summaryrefslogtreecommitdiffstats
path: root/gensym.sml
blob: eef7333149c2d5c5f1c834bb3b7c6b6c54bdb6fa (plain) (blame)
1
2
3
4
5
structure GenSym =
struct
  val counter : int ref = ref 0
  fun new () : int = (counter := (!counter + 1) ; !counter)
end