> Question: how is&&-> going to work on an lvalue: > > my $foo&&-> [0] = "bar"; > > Fatal error? > > > Abigail You are trying to assign something to $foo->[0], so i'd say $foo &&-> [0] = "bar" ignores the && and autovivifies if necessary.. JohnThread Previous | Thread Next