sub test{ print @_; } ## THIS DOESN'T WORK, BUT IF IT DID... my $coderef = \&test( 'this is the argument' ); $coderef->(); # would print 'this is the argument' ); $coderef->( 'a different argument' ); # Would print 'this is the argument'!!