summaryrefslogtreecommitdiff
path: root/benchmark/other-lang/fib.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/other-lang/fib.rb')
-rw-r--r--benchmark/other-lang/fib.rb18
1 files changed, 9 insertions, 9 deletions
diff --git a/benchmark/other-lang/fib.rb b/benchmark/other-lang/fib.rb
index 7e0e8daa7e..ec587eabe0 100644
--- a/benchmark/other-lang/fib.rb
+++ b/benchmark/other-lang/fib.rb
@@ -1,9 +1,9 @@
-def fib n
- if n < 3
- 1
- else
- fib(n-1) + fib(n-2)
- end
-end
-
-fib(34)
+def fib n
+ if n < 3
+ 1
+ else
+ fib(n-1) + fib(n-2)
+ end
+end
+
+fib(34)