aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-097/luca-ferrari/raku/ch-1.p62
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-097/luca-ferrari/raku/ch-1.p6 b/challenge-097/luca-ferrari/raku/ch-1.p6
index 970bd2379b..f8897ae78a 100644
--- a/challenge-097/luca-ferrari/raku/ch-1.p6
+++ b/challenge-097/luca-ferrari/raku/ch-1.p6
@@ -14,6 +14,6 @@ sub MAIN( Str $S = "THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG",
%cipher{ @alphabet[ $_ ] } = @alphabet.rotate( $N * -1 )[ $_ ] for ^@alphabet.elems;
say "Encoding $S";
- print %cipher{ $_ }:exists ?? %cipher{ $_ } !! $_ for $S.comb;
+ print %cipher{ $_ }:exists ?? %cipher{ $_ } !! $_ for $S.uc.comb;
say "\ndone";
}