mirror of
https://github.com/RoBaertschi/tt.git
synced 2025-04-16 05:53:30 +00:00
12 lines
109 B
Plaintext
12 lines
109 B
Plaintext
fn main() = {
|
|
hi: i64 = 4;
|
|
|
|
if hi == 2 {
|
|
hi = 3
|
|
} else {
|
|
hi = 2
|
|
}
|
|
|
|
hi
|
|
};
|