aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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';