in reply to Re^3: What's so bad about &function(...)?
in thread What's so bad about &function(...)?

OTOH, if they write something like:
$a[0] = some_func(2, 3); $a[1] = 17; # Expected outcome. &is(@a);
their code runs fine, and it isn't getting generating errors about a mismatch of the number of arguments. I'd say that '&' disables mysterious side-effects.
Perl --((8:>*