This commit is contained in:
2026-04-17 00:09:00 -04:00
parent 83edad0cd8
commit e5ae506a84
11 changed files with 161 additions and 52 deletions
+6 -2
View File
@@ -1,7 +1,11 @@
x :i32 = 3;
let x: i32 = 3;
while true {
print("hello");
print(x);
};
y := fn(x: i32) -> i32 {x};
if x {
print("hello");
}
let y = fn(x: i32) -> i32 {x};