This commit is contained in:
2026-04-12 17:26:39 -04:00
parent 2582e8c87e
commit f702f47714
9 changed files with 121 additions and 49 deletions
+7 -6
View File
@@ -1,6 +1,7 @@
x: i32 = 3;
y := fn(a, b, c) {};
while Some(a) := b {
print("hello");
f(x, y, z)
}
x :i32 = 3;
while true {
print("hello");
print(x);
};
y := fn(x: i32) -> i32 {x};