diff options
| -rw-r--r-- | challenge-053/markus-holzer/raku/ch-2.p6 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-053/markus-holzer/raku/ch-2.p6 b/challenge-053/markus-holzer/raku/ch-2.p6 index beb264e768..3c3739bbd6 100644 --- a/challenge-053/markus-holzer/raku/ch-2.p6 +++ b/challenge-053/markus-holzer/raku/ch-2.p6 @@ -11,7 +11,7 @@ sub MAIN(Int $n) .say for gather { build-str( $n, $_ ) for %rules.keys.sort } } -multi sub build-str( $n, $current ) +sub build-str( $n, $current ) { my $last = $current.substr( * - 1 ); |
