summaryrefslogtreecommitdiff
path: root/ruby_2_2/benchmark/other-lang/fib.py
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/benchmark/other-lang/fib.py')
-rw-r--r--ruby_2_2/benchmark/other-lang/fib.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/ruby_2_2/benchmark/other-lang/fib.py b/ruby_2_2/benchmark/other-lang/fib.py
new file mode 100644
index 0000000000..45f2bceb8d
--- /dev/null
+++ b/ruby_2_2/benchmark/other-lang/fib.py
@@ -0,0 +1,7 @@
+def fib(n):
+ if n < 3:
+ return 1
+ else:
+ return fib(n-1) + fib(n-2)
+
+fib(34)