Skip to content

Instantly share code, notes, and snippets.

@domgetter
Created March 26, 2017 20:31
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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