Help for this page

Select Code to Download


  1. or download this
    sub sub_exists {
       my $name = shift;
       no strict qw( refs );
       return exists( &$name );
    }
    
  2. or download this
    sub sub_exists {
       my $name = shift;
    ...
       use autovivification;  # Disable module to avoid bug.
       return exists( &$name );
    }