mirror of
https://github.com/RoBaertschi/tt.git
synced 2025-04-15 21:43:30 +00:00
18 lines
167 B
Plaintext
18 lines
167 B
Plaintext
fn main(): i64 = {
|
|
i := 5;
|
|
|
|
|
|
if i == 5 {
|
|
0
|
|
} else {
|
|
1
|
|
};
|
|
|
|
test2(3)
|
|
};
|
|
|
|
fn test2(hello: i64): i64 = {
|
|
hello // Comment test
|
|
};
|
|
|