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