summaryrefslogtreecommitdiff
path: root/trunk/benchmark/other-lang/ack.pl
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/benchmark/other-lang/ack.pl')
-rw-r--r--trunk/benchmark/other-lang/ack.pl11
1 files changed, 11 insertions, 0 deletions
diff --git a/trunk/benchmark/other-lang/ack.pl b/trunk/benchmark/other-lang/ack.pl
new file mode 100644
index 0000000000..201e22ddfa
--- /dev/null
+++ b/trunk/benchmark/other-lang/ack.pl
@@ -0,0 +1,11 @@
+use integer;
+
+sub Ack {
+ return $_[0] ? ($_[1] ? Ack($_[0]-1, Ack($_[0], $_[1]-1))
+ : Ack($_[0]-1, 1))
+ : $_[1]+1;
+}
+
+my $NUM = 9;
+$NUM = 1 if ($NUM < 1);
+my $ack = Ack(3, $NUM);