Skip to content

Instantly share code, notes, and snippets.

@highercomve
Created November 21, 2013 15:27
Show Gist options
  • Save highercomve/7583584 to your computer and use it in GitHub Desktop.
Save highercomve/7583584 to your computer and use it in GitHub Desktop.
fib = Enumerator.new do |y|
a = b = 1
loop do
y << a
a, b = b, a + b
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment