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, 0 insertions, 7 deletions
diff --git a/ruby_2_2/benchmark/other-lang/fib.py b/ruby_2_2/benchmark/other-lang/fib.py
deleted file mode 100644
index 45f2bceb8d..0000000000
--- a/ruby_2_2/benchmark/other-lang/fib.py
+++ /dev/null
@@ -1,7 +0,0 @@
-def fib(n):
- if n < 3:
- return 1
- else:
- return fib(n-1) + fib(n-2)
-
-fib(34)