aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/other-lang/fib.py
blob: 40f87f3e9c4e589a7e1e371f8339e8b4efbb0399 (plain)
1
2
3
4
5
6
7
def fib(n):
  if n < 3:
    return 1
  else:
    return fib(n-1) + fib(n-2)

fib(34)