4 lines
70 B
Rust
4 lines
70 B
Rust
|
|
fn repeat(f: impl FnMut(usize), n: usize) {
|
||
|
|
(0..n).for_each(f);
|
||
|
|
}
|