summaryrefslogtreecommitdiffstats
path: root/either.sml
diff options
context:
space:
mode:
authorRose Hogenson <rhogenson@posteo.net>2023-02-11 09:40:25 -0800
committerRose Hogenson <rhogenson@posteo.net>2023-02-11 09:40:25 -0800
commitddb69212f03a82e980144594d809a072b50e7f19 (patch)
treefeffd8402d40c8ee0c3bb441355db956ef4cc6f9 /either.sml
parentWrite a first draft of the compiler. (diff)
downloadsml-ddb69212f03a82e980144594d809a072b50e7f19.tar.zst
Finish the compiler.
Just joking. But we did manage to compile a program from SML to bytecode.
Diffstat (limited to 'either.sml')
-rw-r--r--either.sml4
1 files changed, 0 insertions, 4 deletions
diff --git a/either.sml b/either.sml
deleted file mode 100644
index 6a63fe5..0000000
--- a/either.sml
+++ /dev/null
@@ -1,4 +0,0 @@
-structure Either =
-struct
- datatype ('a, 'b) either = Left of 'a | Right of 'b
-end