fn main() -> i64 { let mut i: i64 = 0; while i < 5 { print_i64(i); i = i + 1; } return 0; }