aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-097/luca-ferrari/raku/ch-1.p63
1 files changed, 2 insertions, 1 deletions
diff --git a/challenge-097/luca-ferrari/raku/ch-1.p6 b/challenge-097/luca-ferrari/raku/ch-1.p6
index 927e1b1586..483797f301 100644
--- a/challenge-097/luca-ferrari/raku/ch-1.p6
+++ b/challenge-097/luca-ferrari/raku/ch-1.p6
@@ -15,5 +15,6 @@ sub MAIN( Str $S = "THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG",
my @encoded;
@encoded.push: %cipher{ $_ }:exists ?? %cipher{ $_ } !! $_ for $S.uc.comb;
- "Encoded string for text\n$S\nis\n{ @encoded.join('') }\n".say
+ # "Encoded string for text\n$S\nis\n{ @encoded.join('') }\n".say
+ @encoded.join.say;
}