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