Re: Assigning and passing $/
Chris (>): > I can't assign $/ to a variable or > pass it to a method. Is this a bug, or am I just confused? I think it's a bug. I sent your message along to [EMAIL PROTECTED] // Carl
Assigning and passing $/
I'm learning about Match objects today. I can't assign $/ to a variable or pass it to a method. Is this a bug, or am I just confused? I get the following results. In both cases, $/ gets stringified instead of remaining as a Match instance. % ./perl6 -e 'if ("f" ~~ m/f/) { my Match $m =