tt/test.tt
2025-02-02 21:31:56 +01:00

12 lines
109 B
Plaintext

fn main() = {
hi: i64 = 4;
if hi == 2 {
hi = 3
} else {
hi = 2
}
hi
};