summaryrefslogtreecommitdiff
path: root/trunk/benchmark/other-lang/fib.py
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/benchmark/other-lang/fib.py')
-rw-r--r--trunk/benchmark/other-lang/fib.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/trunk/benchmark/other-lang/fib.py b/trunk/benchmark/other-lang/fib.py
new file mode 100644
index 0000000000..45f2bceb8d
--- /dev/null
+++ b/trunk/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)