mirror of
https://github.com/RoBaertschi/tt.git
synced 2025-04-16 05:53:30 +00:00
10 lines
90 B
Plaintext
10 lines
90 B
Plaintext
fn main() = {
|
|
hi := 4;
|
|
|
|
if hi == 4 in
|
|
hi = 0
|
|
else hi = 1;
|
|
|
|
hi
|
|
};
|