summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/benchmark/other-lang/fact.pl
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/benchmark/other-lang/fact.pl')
-rw-r--r--ruby_1_9_3/benchmark/other-lang/fact.pl13
1 files changed, 0 insertions, 13 deletions
diff --git a/ruby_1_9_3/benchmark/other-lang/fact.pl b/ruby_1_9_3/benchmark/other-lang/fact.pl
deleted file mode 100644
index a9b0b69cdf..0000000000
--- a/ruby_1_9_3/benchmark/other-lang/fact.pl
+++ /dev/null
@@ -1,13 +0,0 @@
-sub fact{
- my $n = @_[0];
- if($n < 2){
- return 1;
- }
- else{
- return $n * fact($n-1);
- }
-}
-
-for($i=0; $i<10000; $i++){
- &fact(100);
-}