steal from jai

This commit is contained in:
2026-06-01 22:40:24 -04:00
parent d864adfd05
commit 1d568f8ce3
17 changed files with 231 additions and 84 deletions
+11 -8
View File
@@ -1,14 +1,17 @@
modl other;
let x: i32 = 3;
x : i32 = 3;
while true {
print("hello");
print(x);
};
print("hello");
print(x);
other.thing();
thing();
break;
}
let y = true;
y :: true;
if y => print("hello");
fn thing() {
thing :: fn() {
}
import other;
+3 -1
View File
@@ -1,3 +1,5 @@
fn thing() {
thing :: fn() {
print("hello from other");
}
import main;