Skip to content

Instantly share code, notes, and snippets.

@Masa331
Created July 26, 2015 14:46
Show Gist options
  • Save Masa331/4e405cd44d3adf0ffd0a to your computer and use it in GitHub Desktop.
Save Masa331/4e405cd44d3adf0ffd0a to your computer and use it in GitHub Desktop.
enum = [1, 2, 3].each
enum.next
# => 1
enum.next
# => 2
enum.next
# => 3
enum.next
# => StopIteration: iteration reached an end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment