tt/test.tt
2025-03-09 19:01:32 +01:00

18 lines
157 B
Plaintext

fn main() = {
i := 5;
if i == 5 {
0
} else {
1
};
test2(3)
};
fn test2(hello: i64) = {
hello // Comment test
};