Skip to content

Instantly share code, notes, and snippets.

@sirpengi
Created September 18, 2012 04:46
Show Gist options
  • Save sirpengi/3741310 to your computer and use it in GitHub Desktop.
Save sirpengi/3741310 to your computer and use it in GitHub Desktop.
ruby woe
fib = Generator.new { |fib|
a = 0
b = 1
while true
fib.yield b
a, b = b, a + b
end
}
fib.take_while { |i| i < 4000000 }.select { |i| i.even? }.inject(0, :+)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment