feat: basic parsing of example.rx is ready

This commit is contained in:
2025-11-28 18:32:30 +01:00
parent 7febbb80d4
commit 13fbdad563
5 changed files with 354 additions and 47 deletions

View File

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