This commit is contained in:
iris committed 2026-04-12 17:26:39 -04:00
1 parent 2582e8c87e
commit f702f47714
9 files changed
+121 -49

No files matched your search

+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};