1 2 3 4 5 6 7 8 9 10 11
fn example() {} fn main() { var i: Int = 10; var j: Int = 1.0 - 1; while i > j { i = i - 1; } example(i); }