On Sun Feb 08 08:25:26 2015, masak wrote:
> m: say "foo".comb(/o/)
> rakudo-moar d9f58f: OUTPUT«o o»
> m: say "foo".comb('o')
> rakudo-moar d9f58f: OUTPUT«Cannot call 'comb' [...]»
> * masak suggests the latter form work, too
> reason: I saw some code I had written where I had a regex with
>
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #123760]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=123760 >
m: say "foo".comb(/o/)
rakudo-moar d9f58f: OUTPUT«o o»
m: say "foo".comb('o')
rakudo