On Wed, Aug 23, 2006 at 05:01:43PM -0400, Mark J. Reed wrote: : Sorry if this is a known question, but I didn't see it mentioned in the : recent archive or FAQ. : : for ($a, $b) { $_ = ... } : : gives me a "Can't modify constant item: VRef <Scalar>".
Which is correct as the default. : Making it explicitly rw doesn't help: : : for ($a, $b) -> $x is rw { $x = ... } : : Is this a "haven't gotten around to rw parameters in blocks yet" or a : regression? Not implemented, I think, but could be a regression. In any event, not right currently. Larry