summaryrefslogtreecommitdiffstats
path: root/main.sml
diff options
context:
space:
mode:
authorRose Hogenson <rhogenson@posteo.net>2023-02-12 15:37:25 -0800
committerRose Hogenson <rhogenson@posteo.net>2023-02-12 15:37:25 -0800
commitd940187fd8720e0ab3c00e5a6a7ae8f181c7752d (patch)
tree69df829ae1e7fb9454008920b49db08489d939a6 /main.sml
parent5989629a7951e544ad4656672025a99ecd08c7c9 (diff)
downloadsml-d940187fd8720e0ab3c00e5a6a7ae8f181c7752d.tar.zst
Add lambda functions.
Diffstat (limited to 'main.sml')
-rw-r--r--main.sml3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.sml b/main.sml
index 10e6937..4b22f65 100644
--- a/main.sml
+++ b/main.sml
@@ -1,3 +1,4 @@
+use "format.sml";
use "result.sml";
use "buffer.sml";
use "gensym.sml";
@@ -12,5 +13,5 @@ use "opts.sml";
use "parser.sml";
use "compiler.sml";
-val _ = Compiler.main ()
+val _ = Compiler.main (CommandLine.arguments ())
val _ = OS.Process.exit OS.Process.success