OSDN Git Service

ruby-1.9.1-rc1
[splhack/AndroidRuby.git] / lib / ruby-1.9.1-rc1 / benchmark / other-lang / fib.py
1 def fib(n):
2   if n < 3:
3     return 1
4   else:
5     return fib(n-1) + fib(n-2)
6
7 fib(34)