diff options
| author | Rose Hogenson <rosehogenson@posteo.net> | 2024-08-31 13:08:56 -0700 |
|---|---|---|
| committer | Rose Hogenson <rosehogenson@posteo.net> | 2025-10-04 13:55:40 -0700 |
| commit | c48a992a6ed6ebd79c344b37364a680ddd948dea (patch) | |
| tree | 3df5e6f5b3c4854d25387154731f780b650008d4 /main.sml | |
| parent | ed48b02873f3ea3cab0107176d00eb00c9519766 (diff) | |
| download | sml-c48a992a6ed6ebd79c344b37364a680ddd948dea.tar.zst | |
Combine structs and expressions
Diffstat (limited to 'main.sml')
| -rw-r--r-- | main.sml | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 ()) |
