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, 0 insertions, 11 deletions
diff --git a/ruby_2_2/benchmark/other-lang/tak.pl b/ruby_2_2/benchmark/other-lang/tak.pl
deleted file mode 100644
index 7e748a67c6..0000000000
--- a/ruby_2_2/benchmark/other-lang/tak.pl
+++ /dev/null
@@ -1,11 +0,0 @@
-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);