7 lines
88 B
Rust
7 lines
88 B
Rust
fn function(x: usize) {
|
|
print!("{};", x);
|
|
}
|
|
|
|
fn main() {
|
|
repeat(function, 4);
|
|
}
|