aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-080/simon-proctor/raku/ch-1.raku2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-080/simon-proctor/raku/ch-1.raku b/challenge-080/simon-proctor/raku/ch-1.raku
index 2b86522724..f86435272d 100644
--- a/challenge-080/simon-proctor/raku/ch-1.raku
+++ b/challenge-080/simon-proctor/raku/ch-1.raku
@@ -6,6 +6,6 @@ use v6;
sub MAIN (
*@N where { $_.all ~~ Int } #= List of integers
) {
- say (1...*).first( * !~~ any(@N) );
+ say (1...*).first( none(@N) );
}