in reply to Re^3: What's so bad about &function(...)?
in thread What's so bad about &function(...)?
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.$a[0] = some_func(2, 3); $a[1] = 17; # Expected outcome. &is(@a);
|
|---|