mirror of
https://github.com/RoBaertschi/tt.git
synced 2025-04-15 21:43:30 +00:00
14 lines
134 B
Plaintext
14 lines
134 B
Plaintext
fn main() = {
|
|
hi := 4;
|
|
|
|
if hi == 4 {
|
|
test2 := 3;
|
|
hi = 0
|
|
}
|
|
else {
|
|
hi = 1
|
|
};
|
|
|
|
test2
|
|
};
|