Help for this page

Select Code to Download


  1. or download this
    sub australianNationalUniversity {
        use AustralianNationalUniversity;
    ...
        lock(@searchResults);
        push ( @searchResults, @results );
    }
    
  2. or download this
    # at the beginning of your code:
    use GenericSearch;
    ...
        lock(@searchResults);
        push ( @searchResults, @results );
    }
    
  3. or download this
    my @search = grep /^_/, param();
    
    ...
    
    # and finally, join them when done
    $_->join for @thread;