diff options
| author | Mohammad Sajid Anwar <Mohammad.Anwar@yahoo.com> | 2025-07-04 10:55:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-04 10:55:08 +0100 |
| commit | 2804e9bd3bb454781643a543de9b519c1c9d2c95 (patch) | |
| tree | 764c1bdc09714f3174e00ead3d019f40d7610404 | |
| parent | 60fe9858b07ad2a1eeb703f74e7305faf183e0bd (diff) | |
| parent | 3a060dd651d97a2b3e6f8cd2a480def82aaec3ab (diff) | |
| download | perlweeklychallenge-club-2804e9bd3bb454781643a543de9b519c1c9d2c95.tar.gz perlweeklychallenge-club-2804e9bd3bb454781643a543de9b519c1c9d2c95.tar.bz2 perlweeklychallenge-club-2804e9bd3bb454781643a543de9b519c1c9d2c95.zip | |
Merge pull request #12278 from Scimon/master
Update during blogging
| -rw-r--r-- | challenge-328/simon-proctor/README | 2 | ||||
| -rwxr-xr-x | 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'; |
