summaryrefslogtreecommitdiffstats
path: root/main.sml
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2025-05-18 08:17:20 -0700
committerRose Hogenson <rosehogenson@posteo.net>2025-06-13 19:14:58 -0700
commit8b3a9b8f0d80e7dd789f363deb6bb36189a31f01 (patch)
tree414ac8c234ded42f1bf4d8da7a96a4c7078db95f /main.sml
parentAdd .envrc (diff)
downloadsml-8b3a9b8f0d80e7dd789f363deb6bb36189a31f01.tar.zst
Add a typechecker
Diffstat (limited to 'main.sml')
-rw-r--r--main.sml5
1 files changed, 3 insertions, 2 deletions
diff --git a/main.sml b/main.sml
index 99d72bb..3b74705 100644
--- a/main.sml
+++ b/main.sml
@@ -7,9 +7,10 @@ use "Syntax.sml";
use "Opts.sml";
use "Parser.sml";
use "ShowSyntax.sml";
-use "CodeGen.sml";
-use "CPS.sml";
+use "Types.sml";
use "Elab.sml";
+use "CPS.sml";
+use "CodeGen.sml";
use "Linker.sml";
use "Compiler.sml";