initial commit

This commit is contained in:
2024-10-05 11:09:10 -04:00
commit 148ad00c83
16 changed files with 987 additions and 0 deletions

19
test.lang Normal file
View File

@@ -0,0 +1,19 @@
fn main() {
// let x = 3;
let y = 4 + 4 + 5;
let z = 1 * 2 - 3 / test * 4;
let r = 1 - 2 + 3;
let w = 1 * (2 - 3) / "test" - 7;
asntei
let a = test(3);
test(5);
return 5 +
a;
let b = (test2.func)(3 + 4)(8)("a");
let x = {
return 5;
let a = 3;
b
};
}