aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-335/ash/raku/ch-2.raku2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-335/ash/raku/ch-2.raku b/challenge-335/ash/raku/ch-2.raku
index ea6605fc27..cbf279e78d 100644
--- a/challenge-335/ash/raku/ch-2.raku
+++ b/challenge-335/ash/raku/ch-2.raku
@@ -70,6 +70,6 @@ sub outcome(*@moves) {
return True if (0..2).map({ $f[$_][$_] eq $p }).all;
return True if (0..2).map({ $f[$_][2-$_] eq $p }).all;
- False
+ return False
}
}