Files
lang/test/main.lang
T
2026-06-01 23:03:35 -04:00

18 lines
171 B
Plaintext

x : u32 = 3;
while true {
print("hello");
print(x);
other.thing();
thing();
break;
}
y :: true;
if y => print("hello");
thing :: fn() {
}
import other;