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.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/benchmark/other-lang/fib.rb b/benchmark/other-lang/fib.rb
new file mode 100644
index 0000000000..7e0e8daa7e
--- /dev/null
+++ b/benchmark/other-lang/fib.rb
@@ -0,0 +1,9 @@
+def fib n
+ if n < 3
+ 1
+ else
+ fib(n-1) + fib(n-2)
+ end
+end
+
+fib(34)