compiler wip:

This commit is contained in:
2024-11-29 00:11:59 -07:00
parent 9aaaa2935f
commit 2200df4977
4 changed files with 170 additions and 153 deletions

View File

@@ -1,5 +1,9 @@
let i = 234 + 432;
fn test(a, b, c) {
};
let y = i / 432.54;
fn test2(x, y, z) {
test(1, 2, 3);
};
let z = i / y;
test2(1, 2, 3);