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

4 lines
51 B
Plaintext

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