in reply to Re: array ref problem
in thread 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

-- 
Ronald Fischer <ynnor@mm.st>

Replies are listed 'Best First'.
Re^3: array ref problem
by kyle (Abbot) on Nov 03, 2008 at 17:59 UTC
    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.