aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus "Holli" Holzer <holli.holzer@gmail.com>2020-03-23 19:43:56 +0100
committerMarkus "Holli" Holzer <holli.holzer@gmail.com>2020-03-23 19:43:56 +0100
commitf7f2f2dbbad9aae326b5f4e84a6730e65ab6a579 (patch)
treea556d6ab5524b2de88b950cf5508ded0a8037bbe
parentc93d7c5bc0d89068feb6e6eeb09afce1e7925105 (diff)
downloadperlweeklychallenge-club-f7f2f2dbbad9aae326b5f4e84a6730e65ab6a579.tar.gz
perlweeklychallenge-club-f7f2f2dbbad9aae326b5f4e84a6730e65ab6a579.tar.bz2
perlweeklychallenge-club-f7f2f2dbbad9aae326b5f4e84a6730e65ab6a579.zip
unnecessary 'multi'
-rw-r--r--challenge-053/markus-holzer/raku/ch-2.p62
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 );