Help for this page

Select Code to Download


  1. or download this
    $ bleadperl -MO=Deparse
    package SE::Util::Func;
    use Exporter;
    ...
    @EXPORT= qw(  SE_cat SE_dump SE_getName SE_getValue SE_isTag );
    require 5.6.1;
    use strict;
    
  2. or download this
    package SE::Util::Func;
    @ISA = 'Exporter';
    @EXPORT = ('SE_cat', 'SE_dump', 'SE_getName', 'SE_getValue', 'SE_isTag
    +');
    ...
            'strict'->import
        };
    }