Help for this page

Select Code to Download


  1. or download this
    
    use strict;       #strict is same color as use, which is orange
    ...
    use vars;          #vars is orange
    use Benchmark qw(:all);   #Benchmark is white
    use List::BinarySearch;   #A module I installed is white
    
  2. or download this
    BEGIN { require Module; Module->import( LIST ); }
    
  3. or download this
    @ISA = qw(Exporter);   
    @EXPORT = qw(testsub);
    @EXPORT_OK = qw($string);
    
  4. or download this
    use Module ();