Guest User

Untitled

a guest
Dec 11th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. fn repeat(n: i64, f: impl Fn()) {
  2. if n > 0 {
  3. f();
  4. repeat(n - 1, &f);
  5. }
  6. }
  7.  
  8. fn main() {
  9. repeat(3, || {});
  10. }
Add Comment
Please, Sign In to add comment