Skip to content

Instantly share code, notes, and snippets.

@Masa331
Created July 26, 2015 14:51
Show Gist options
  • Save Masa331/dbe29eeb87de8d82a798 to your computer and use it in GitHub Desktop.
Save Masa331/dbe29eeb87de8d82a798 to your computer and use it in GitHub Desktop.
enum = Enumerator.new do |yielder|
yielder.yield 1
end
enum.each { |item| puts item }
# 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment