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