RosettaCodeData/Task/Repeat/Rust/repeat-2.rs

4 lines
51 B
Rust

fn main() {
repeat(|x| print!("{};", x), 5);
}