added some documentation and started on compiler for custom language (not C) based on previous prototypes. pretty broken state rn.

This commit is contained in:
2026-02-01 22:16:09 +00:00
parent 52ef7872f0
commit 8f7163c459
9 changed files with 1750 additions and 17 deletions
+2 -8
View File
@@ -1,8 +1,2 @@
main: Func = | x: U32, y: U32 | {
res = add(x, y);
print(res);
if res > 10 {
print("res is greater than 10");
}
}
fn factorial(n: u32) -> u32 {}
fn main(x: u32, y: u32) -> u32 {}