In fact the only time you would now (afaik) is if you want a a ref-to-sub.
or when forwarding to another sub:
sub _foo_impl { ... } sub foo { .... &_foo_impl; ... } foo(1,2,3); # _foo_impl(1,2,3) gets called
In reply to Re^2: array ref problem
by rovf
in thread array ref problem
by perlplayer
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |