started work on compiler

This commit is contained in:
2025-06-30 20:44:39 +01:00
parent ae92510fb8
commit 2582ad10fa
7 changed files with 533 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
main: Func = | x: U32, y: U32 | {
res = add(x, y);
print(res);
if res > 10 {
print("res is greater than 10");
}
}