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.pl22
1 files changed, 11 insertions, 11 deletions
diff --git a/benchmark/other-lang/tak.pl b/benchmark/other-lang/tak.pl
index c7bb626e61..7e748a67c6 100644
--- a/benchmark/other-lang/tak.pl
+++ b/benchmark/other-lang/tak.pl
@@ -1,11 +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);
+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);