Skip to content

Instantly share code, notes, and snippets.

@domgetter
Created March 26, 2017 20:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save domgetter/472d5d1c3fe245b227dee89da1cb388c to your computer and use it in GitHub Desktop.
Save domgetter/472d5d1c3fe245b227dee89da1cb388c to your computer and use it in GitHub Desktop.
evens_upto_1000 = Enumerator.new do |y|
(0...1000).each do |n|
y << n if n.even?
end
end
evens_upto_1000.take(20)
# [0, 2, 4, 6, 8, ..., 36, 38]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment