| stuff before my $sref = \&foo | stuff after #### | later &($sref)( arg1....argn); | #### #!/usr/bin/perl -w use strict; my $sref=\&foo; &{$sref}; exit(0); sub foo { print "This is foo.\n"; }