From 3a060dd651d97a2b3e6f8cd2a480def82aaec3ab Mon Sep 17 00:00:00 2001 From: Scimon Date: Fri, 4 Jul 2025 10:11:44 +0100 Subject: Update during blogging --- challenge-328/simon-proctor/README | 2 +- challenge-328/simon-proctor/raku/ch-2.raku | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/challenge-328/simon-proctor/README b/challenge-328/simon-proctor/README index 6573911693..95e3ea3c89 100644 --- a/challenge-328/simon-proctor/README +++ b/challenge-328/simon-proctor/README @@ -1,3 +1,3 @@ Solution by Simon Proctor -Blog at : https://khanate.co.uk/weekly/326.html \ No newline at end of file +Blog at : https://khanate.co.uk/weekly/ \ No newline at end of file diff --git a/challenge-328/simon-proctor/raku/ch-2.raku b/challenge-328/simon-proctor/raku/ch-2.raku index fb882ccac5..b77047272b 100755 --- a/challenge-328/simon-proctor/raku/ch-2.raku +++ b/challenge-328/simon-proctor/raku/ch-2.raku @@ -2,7 +2,7 @@ subset ValidInput of Str where * ~~ /^ <[a..z A..Z]> + $/; -multi sub MAIN(1) { +multi sub MAIN(1) is hidden-from-USAGE { use Test; ok "WeEekly" ~~ ValidInput, 'Valid Input works'; ok "1234" !~~ ValidInput, 'Valid input fails for invalid value'; -- cgit