bash-3.2$ ../perl -wle '$cr = sub { print join "-",99,@_ }; @_ = 9..13;$cr->&*' 99-9-10-11-12-13 bash-3.2$ ../perl -wle '$cr = sub { print join "-",99,@_ }; @_ = 9..13;&$cr' 99-9-10-11-12-13 is $cr->&* more like &$cr or goto &$cr ? if it doesn't imply that frameless goto goodness, there isn't much advantage over bash-3.2$ ../perl -wle '$cr = sub { print join "-",99,@_ }; @_ = 9..13;$cr->(@_)' 99-9-10-11-12-13Thread Previous | Thread Next