summaryrefslogtreecommitdiff
path: root/benchmark/app_factorial.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/app_factorial.yml')
-rw-r--r--benchmark/app_factorial.yml14
1 files changed, 0 insertions, 14 deletions
diff --git a/benchmark/app_factorial.yml b/benchmark/app_factorial.yml
deleted file mode 100644
index 9db58e1a3c..0000000000
--- a/benchmark/app_factorial.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-benchmark:
- app_factorial: |
- def fact(n)
- if(n > 1)
- n * fact(n-1)
- else
- 1
- end
- end
-
- 100.times {
- fact(5000)
- }
-loop_count: 1