tt/test.tt

15 lines
141 B
Plaintext

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