Help for this page

Select Code to Download


  1. or download this
    use lib '.';
    use vars '%module';
    ...
    # Loaded from Makefile.PL
    %module = get_module_info();
    my $module = $module{NAME};
    
  2. or download this
    perl -M-lib=. Makefile.PL && make && make test
    
  3. or download this
    # Windows syntax:
    set PERL5OPT=-M-lib=.
    perl Makefile.PL && dmake && prove -bl xt t
    
  4. or download this
    @rem Shell syntax:
    export PERL5OPT=-M-lib=.
    perl Makefile.PL && make && prove -bl xt t