sub test{ print 'this is the argument'; } my $coderef = \&test; $coderef->(); # prints 'this is the argument' ); $coderef->( 'a different argument' ); # Prints 'this is the argument'!!