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

8 lines
88 B
Rust

fn function(x: usize) {
print!("{};", x);
}
fn main() {
repeat(function, 4);
}