Skip to content

Instantly share code, notes, and snippets.

@keroxp
Created June 27, 2012 12:25
Show Gist options
  • Save keroxp/3003726 to your computer and use it in GitHub Desktop.
Save keroxp/3003726 to your computer and use it in GitHub Desktop.
フィボナッチ数を出力するプログラム
class Fib
def self.calc
fibs = [1,1]
loop do
yield fibs[0]
fibs.push fibs.shift + fibs[0]
end
end
end
if $0 == __FILE__
Fib.calc { |f|
puts f
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment