fn main(): i64 = { test2(3, 0) }; fn test2(until: i64, i: i64): i64 = { if i >= until { 0 } else { test2(until, i+1) + 1 } };