Help for this page

Select Code to Download


  1. or download this
    sub get_coderef {
        my $subname = shift;
        my $coderef;
    ...
        $coderef = *{"$subname"}{CODE};
        return $coderef if ($coderef and defined(&$coderef));
    }
    
  2. or download this
    #!/usr/bin/perl -w
    
    use strict;
    ...
    } else {
        print "Not defined!\n";
    }