Help for this page

Select Code to Download


  1. or download this
    WriteMakefile(
        NAME              => 'Test::Bin',
    ...
          { 'bin/test.PL $(INSTALLSITELIB) $(INSTALLSITEARCH)'
                   => 'lib/Test/Bin.pm' },
    );
    
  2. or download this
    package Test::Bin;
    
    ...
    
    1;
    __END__
    
  3. or download this
    #!/usr/bin/perl -w -pi~
    # Use command line options to read and write file(s).
    ...
    1;
    
    __END__
    
  4. or download this
    package Test::Bin;
    
    ...
    
    1;
    __END__