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