feat: basic lexer + parser with basic example

This commit is contained in:
2025-11-26 22:26:10 +01:00
parent 1975059b1b
commit 7febbb80d4
10 changed files with 414 additions and 1 deletions

7
example.rx Normal file
View File

@ -0,0 +1,7 @@
extern putchar;
fn main() {
local a = 34;
local b = 35;
putchar(a + b);
}