in reply to array ref problem
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 [download]
In fact the only time you would now (afaik) is if you want a a ref-to-sub. or when forwarding to another sub:
...or when you want to bypass the prototype of the sub you're calling.