summaryrefslogtreecommitdiff
path: root/ruby_2_2/benchmark/other-lang/tak.pl
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/benchmark/other-lang/tak.pl')
-rw-r--r--ruby_2_2/benchmark/other-lang/tak.pl11
1 files changed, 11 insertions, 0 deletions
diff --git a/ruby_2_2/benchmark/other-lang/tak.pl b/ruby_2_2/benchmark/other-lang/tak.pl
new file mode 100644
index 0000000000..7e748a67c6
--- /dev/null
+++ b/ruby_2_2/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);