feat: basic lexer + parser with basic example
This commit is contained in:
7
example.rx
Normal file
7
example.rx
Normal file
@ -0,0 +1,7 @@
|
||||
extern putchar;
|
||||
|
||||
fn main() {
|
||||
local a = 34;
|
||||
local b = 35;
|
||||
putchar(a + b);
|
||||
}
|
||||
Reference in New Issue
Block a user