Argument scoping error or bug?
I stumbled across this issue while descending into a recursive Match structure. Consider the following reentrant subroutine: sub f($n) { for 0..$n -> $i { say "$i of 0..$n"; if ($i == 4) { f(0); } } }; f(6); The value of the argument, $n, gets overwritten
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
