RosettaCodeData/Task/Repeat/Rust/repeat-2.rust
2023-07-01 13:44:08 -04:00

3 lines
51 B
Text

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