aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScimon <simon.proctor@gmail.com>2025-07-04 10:11:44 +0100
committerScimon <simon.proctor@gmail.com>2025-07-04 10:11:44 +0100
commit3a060dd651d97a2b3e6f8cd2a480def82aaec3ab (patch)
tree6a1e4ef5ead6cbd8a8c4cd774aa8ab356a3b4fbb
parent0cfe7095c96b8192b77c084f74da25af073f25e6 (diff)
downloadperlweeklychallenge-club-3a060dd651d97a2b3e6f8cd2a480def82aaec3ab.tar.gz
perlweeklychallenge-club-3a060dd651d97a2b3e6f8cd2a480def82aaec3ab.tar.bz2
perlweeklychallenge-club-3a060dd651d97a2b3e6f8cd2a480def82aaec3ab.zip
Update during blogging
-rw-r--r--challenge-328/simon-proctor/README2
-rwxr-xr-xchallenge-328/simon-proctor/raku/ch-2.raku2
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';