Help for this page

Select Code to Download


  1. or download this
    sub search
    {
         my ($PartNumber) = @_;
    ...
    
         return;  # Returns empty handed
    }
    
  2. or download this
    $|++;
    
    ...
         print "PartNumber? ";
         chomp($what = <STDIN>);
    } while (!search($what));