Luckily, there's a lot more to Rust than that. Killer feature generics aren't.
for 5.times {
// code
}
desugars to: // |args*| { stmt* } is the Rust block syntax
times(5, || {
// code
true // explicit order to continue
})