summaryrefslogtreecommitdiff
path: root/trunk/benchmark/bm_app_factorial.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/benchmark/bm_app_factorial.rb')
-rw-r--r--trunk/benchmark/bm_app_factorial.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/trunk/benchmark/bm_app_factorial.rb b/trunk/benchmark/bm_app_factorial.rb
deleted file mode 100644
index a5a5de0426..0000000000
--- a/trunk/benchmark/bm_app_factorial.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-def fact(n)
- if(n > 1)
- n * fact(n-1)
- else
- 1
- end
-end
-
-8.times{
- fact(5000)
-} \ No newline at end of file