Skip to content

Instantly share code, notes, and snippets.

@JunKikuchi
Created July 6, 2016 03:44
Show Gist options
  • Save JunKikuchi/c8d41f0b89b094065d3f4ff940c92106 to your computer and use it in GitHub Desktop.
Save JunKikuchi/c8d41f0b89b094065d3f4ff940c92106 to your computer and use it in GitHub Desktop.
def lazy_fibs
Enumerator.new do |y|
a, b = 1, 1
loop do
y << a
a, b = b, a + b
end
end.lazy
end
lazy_fibs.take(50).each do |n|
p n
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment