summaryrefslogtreecommitdiff
path: root/benchmark/other-lang/tak.pl
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/other-lang/tak.pl')
-rw-r--r--benchmark/other-lang/tak.pl11
1 files changed, 11 insertions, 0 deletions
diff --git a/benchmark/other-lang/tak.pl b/benchmark/other-lang/tak.pl
new file mode 100644
index 0000000000..c7bb626e61
--- /dev/null
+++ b/benchmark/other-lang/tak.pl
@@ -0,0 +1,11 @@
+sub tak {
+ local($x, $y, $z) = @_;
+ if (!($y < $x)) {
+ return $z;
+ } else {
+ return &tak(&tak($x - 1, $y, $z),
+ &tak($y - 1, $z, $x),
+ &tak($z - 1, $x, $y));
+ }
+}
+&tak(18, 9, 0);