diff options
| author | BarrOff <58253563+BarrOff@users.noreply.github.com> | 2023-03-06 00:18:08 +0100 |
|---|---|---|
| committer | BarrOff <58253563+BarrOff@users.noreply.github.com> | 2023-03-06 00:18:08 +0100 |
| commit | f8892e148823bc9e593acb915052fc4e5fe5386e (patch) | |
| tree | 76974a93193112f837b8e85c6fc2cbfd6dae06c5 | |
| parent | 91fefeb6a999d347cb8d545fae3d659801c6b875 (diff) | |
| download | perlweeklychallenge-club-f8892e148823bc9e593acb915052fc4e5fe5386e.tar.gz perlweeklychallenge-club-f8892e148823bc9e593acb915052fc4e5fe5386e.tar.bz2 perlweeklychallenge-club-f8892e148823bc9e593acb915052fc4e5fe5386e.zip | |
docs: use correct arguments in command string example
| -rw-r--r-- | challenge-206/barroff/raku/ch-1.raku | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-206/barroff/raku/ch-1.raku b/challenge-206/barroff/raku/ch-1.raku index c7aa19b521..349e76e1d1 100644 --- a/challenge-206/barroff/raku/ch-1.raku +++ b/challenge-206/barroff/raku/ch-1.raku @@ -39,7 +39,7 @@ multi sub MAIN('test') { 'works for ("10:10", "09:30", "09:00", "09:55")'; } -#| Take user provided list like 1 2 2 3 +#| Take user provided list like 12:23 14:31 multi sub MAIN(*@elements where @elements.elems ≥ 2 && all(@elements) ~~ $time-format) { my Str @str-elements = @elements; say shortest-time(@str-elements); |
