compiler wip

This commit is contained in:
2024-11-27 21:36:17 -07:00
parent e06d2ed006
commit 9aaaa2935f
3 changed files with 146 additions and 49 deletions

View File

@@ -1,12 +1,5 @@
fn doStuff() {
let i = {
return 234.5;
};
let i = 234 + 432;
i = 5;
let y = i / 432.54;
// This comment is going to be ignored.
return i; // we returned here
}
doStuff();
let z = i / y;