tt/test.tt
2025-02-28 13:06:10 +01:00

14 lines
141 B
Plaintext

fn main() = {
hi := 4;
if hi == 4 {
test2 := 3;
hi = 0
}
else {
hi = 1
};
};
fn test2() = {};