tt/test.tt
Robin Bärtschi bcfa9fbde8 added function calls util typechecker WIP
still have to add support in ttir and both backends
2025-03-11 12:07:46 +01:00

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
};