summaryrefslogtreecommitdiffstats
path: root/format.sml
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2024-05-05 21:12:16 -0700
committerRose Hogenson <rosehogenson@posteo.net>2024-05-05 21:12:16 -0700
commit457c482397e2ca745067e5a3ef2c7d71d7daf187 (patch)
treeaef2b8d88421829105a3c6b8887d8ffde39d5e1e /format.sml
parent048895eb0c85b591b2dd338dd06514bc1b18bacb (diff)
downloadsml-457c482397e2ca745067e5a3ef2c7d71d7daf187.tar.zst
Add tuples.
Diffstat (limited to 'format.sml')
-rw-r--r--format.sml7
1 files changed, 0 insertions, 7 deletions
diff --git a/format.sml b/format.sml
deleted file mode 100644
index 98e8230..0000000
--- a/format.sml
+++ /dev/null
@@ -1,7 +0,0 @@
-structure Format =
-struct
- fun listToString (show : 'a -> string) (l : 'a list) =
- "[" ^ String.concatWith ", " (map show l) ^ "]"
-
- fun pairToString showA showB (a, b) = "(" ^ showA a ^ ", " ^ showB b ^ ")"
-end