diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2026-03-05 21:46:09 +0100 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2026-03-05 21:46:09 +0100 |
| commit | 4f723801d751d520263ce0f14b2cf409f60ac77e (patch) | |
| tree | 2139dea317cbf9662ebf15d60fe54d88781b1b86 /oryxc/src/main.rs | |
| parent | 723fb5031a1f59f8df5d0a0dbf5dc0a54420e15f (diff) | |
Continue work on types and static analysis
Diffstat (limited to 'oryxc/src/main.rs')
| -rw-r--r-- | oryxc/src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/oryxc/src/main.rs b/oryxc/src/main.rs index c118ac5..109aed3 100644 --- a/oryxc/src/main.rs +++ b/oryxc/src/main.rs @@ -2,12 +2,11 @@ mod compiler; mod errors; -// mod intern; +mod intern; mod lexer; mod parser; mod prelude; mod size; -mod symtab; mod unicode; use std::ffi::OsString; |