RosettaCodeData/Task/Repeat/Rust/repeat-2.rust
2023-07-01 11:58:00 -04:00

3 lines
51 B
Text

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