// Arithmetic, function calls and imports! fn main() -> u32 { for i in [0, 1, 2, 3, 4, 5, 6, 7, 9, 10] { print("hello") } let mut num = 0; while num < 10 { num = num + 1; } return num; }