summaryrefslogtreecommitdiffstats
path: root/main.sml
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2024-08-31 13:08:56 -0700
committerRose Hogenson <rosehogenson@posteo.net>2025-10-04 13:55:40 -0700
commitc48a992a6ed6ebd79c344b37364a680ddd948dea (patch)
tree3df5e6f5b3c4854d25387154731f780b650008d4 /main.sml
parented48b02873f3ea3cab0107176d00eb00c9519766 (diff)
downloadsml-c48a992a6ed6ebd79c344b37364a680ddd948dea.tar.zst
Combine structs and expressions
Diffstat (limited to 'main.sml')
-rw-r--r--main.sml10
1 files changed, 5 insertions, 5 deletions
diff --git a/main.sml b/main.sml
index 3b74705..3431fa9 100644
--- a/main.sml
+++ b/main.sml
@@ -1,17 +1,17 @@
use "Sort.sml";
use "Result.sml";
use "Buffer.sml";
-use "GenSym.sml";
use "Map.sml";
-use "Syntax.sml";
use "Opts.sml";
+use "GenSym.sml";
+use "Syntax.sml";
use "Parser.sml";
use "ShowSyntax.sml";
-use "Types.sml";
-use "Elab.sml";
-use "CPS.sml";
use "CodeGen.sml";
use "Linker.sml";
+use "CPS.sml";
+use "Elab.sml";
+use "Types.sml";
use "Compiler.sml";
val _ = Compiler.main (CommandLine.arguments ())