Help for this page

Select Code to Download


  1. or download this
      my $sanity;
    while(1){ 
    ...
      $sanity++; 
      if($sanity > 60){ return(0); }
      }
    
  2. or download this
    while(1){
    select(undef, undef, undef, 0.5); # .5 second wait
    ...
    if($usizer eq $sizer){ last; } # did it grow at all?
    $sizer = $usizer; # set size for next round
    }