Guest User

Untitled

a guest
Dec 10th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. def times(count)
  2. i = 0
  3. while i < count
  4. yield(i)
  5. i = i + 1
  6. end
  7. end
Add Comment
Please, Sign In to add comment