summaryrefslogtreecommitdiff
path: root/benchmark/bm_app_fib.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_app_fib.rb')
-rw-r--r--benchmark/bm_app_fib.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/benchmark/bm_app_fib.rb b/benchmark/bm_app_fib.rb
new file mode 100644
index 0000000000..65a149e5c4
--- /dev/null
+++ b/benchmark/bm_app_fib.rb
@@ -0,0 +1,10 @@
+def fib n
+ if n < 3
+ 1
+ else
+ fib(n-1) + fib(n-2)
+ end
+end
+
+fib(34)
+