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