Files
lang/test/main.lang
T
2026-04-17 01:49:43 -04:00

10 lines
106 B
Plaintext

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