// Arithmetic, function calls and imports! fn main() -> u32 { let mut num = 0; while num < 10 { num = num + 1; } return num; }