use O qw' Deparse -p '; print \&reference; # real ref print \&call(1); # ref to return value print \( &call(1) ); # same as above, ref to return print \( call(1) ); # same as above, ref to return __END__ print((\&reference)); print(\(&call(1))); print(\(&call(1))); print(\(call(1))); __DATA__
In reply to Re^4: array reference madness
by Anonymous Monk
in thread array reference madness
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |