diff options
Diffstat (limited to 'test.toc')
-rw-r--r-- | test.toc | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -1,10 +1,6 @@ main @= fn() { - // b := !(5 > 3 && 4 <= 3 && 3 >= 2 || 0 == 1 || 5 != 3); - N, M @= 2; - foo := 3; - bar : float = foo as float; - test @= fn(x : i64, y : i32, z,w: i64) i32 { - x + (y as i64) + z + w + x as i32 + test @= fn(x : i64, y : i32, z,w: i64) ret1 : i64, ret2 : i64 { + ret1 = x; }; }; |