RosettaCodeData/Task/Repeat/Rust/repeat-2.rs
2024-10-16 18:07:41 -07:00

3 lines
51 B
Rust

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