Help for this page

Select Code to Download


  1. or download this
    while( not ( $worker1Finished eq 'true' and 
                 $worker2Finished eq 'true'     ) 
    ) {
        # ...
    }
    
  2. or download this
    while( not $worker1Finished eq 'true' &&
               $worker2Finished eq 'true'
    ) {
        # ...
    }
    
  3. or download this
    until( $worker1Finished eq 'true' and
           $worker2Finished eq 'true'
    ) {
        # ...
    }