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