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