summaryrefslogtreecommitdiff
path: root/benchmark/app_fib.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/app_fib.yml')
-rw-r--r--benchmark/app_fib.yml12
1 files changed, 0 insertions, 12 deletions
diff --git a/benchmark/app_fib.yml b/benchmark/app_fib.yml
deleted file mode 100644
index d1c6671e9d..0000000000
--- a/benchmark/app_fib.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-benchmark:
- app_fib: |
- def fib n
- if n < 3
- 1
- else
- fib(n-1) + fib(n-2)
- end
- end
-
- fib(34)
-loop_count: 1