Files
lang/test/main.lang
T
2026-04-18 00:16:03 -04:00

15 lines
135 B
Plaintext

modl other;
let x: i32 = 3;
while true {
print("hello");
print(x);
};
let y = true;
if y => print("hello");
fn thing() {
}