Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #152 from lizmat/ListgistAnyok
Make List.gist not warn on undefined values
  • Loading branch information
lizmat committed Jun 2, 2013
2 parents 12b13e5 + 7869a67 commit b2072f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/List.pm
Expand Up @@ -350,7 +350,7 @@ my class List does Positional {
}
}

multi method gist(List:D:) { self.Str }
multi method gist(List:D:) { join ' ', map { $_.gist }, @(self) }
multi method perl(List:D \SELF:) {
self.gimme(*);
self.Parcel.perl ~ '.list'
Expand Down

0 comments on commit b2072f5

Please sign in to comment.