feat: project init, basic lexer implementation

This commit is contained in:
2025-08-27 18:39:00 +02:00
commit a5324195f9
6 changed files with 3356 additions and 0 deletions

9
test.ada Normal file
View File

@ -0,0 +1,9 @@
extrn putchar;
fn main() {
let a = 34;
let b = 35;
let PI = 3.1415;
putchar(a + b);
}