in reply to Re: Binding operator RAM eater
in thread Binding operator RAM eater

It's not an issue with the OP's code, but in some cases you may wish to work with a copy instead of an alias (as you would get for the foreach my $link (@links) variant) so that you can edit the variable without altering the contents of the aliased array element.

True laziness is hard work