Help for this page

Select Code to Download


  1. or download this
    package SearchMachine;
    use warnings;
    ...
      my $mod1 = "/path/MySearch.pm";
      require $mod1;
    }
    
  2. or download this
    package SearchMachine;
    use warnings;
    use strict;
    my $mod1 = "/path/MySearch.pm";
    require $mod1;