summaryrefslogtreecommitdiffstats
path: root/gensym.sml
diff options
context:
space:
mode:
Diffstat (limited to 'gensym.sml')
-rw-r--r--gensym.sml5
1 files changed, 0 insertions, 5 deletions
diff --git a/gensym.sml b/gensym.sml
deleted file mode 100644
index eef7333..0000000
--- a/gensym.sml
+++ /dev/null
@@ -1,5 +0,0 @@
-structure GenSym =
-struct
- val counter : int ref = ref 0
- fun new () : int = (counter := (!counter + 1) ; !counter)
-end