Help for this page

Select Code to Download


  1. or download this
    for my $i ( 1 .. $n ) {
        $results[ $i ] = $db->getLocalData() * $lwp->getRemoteData();
    }
    
  2. or download this
    for my $i (1 .. $n) {
      $results[ $i ] = somefunc1($i) + somefunc2($i);
    ...
        $i;
      }
    }
    
  3. or download this
    parallel {
      clean_up_tmp_dir();
    ...
        do_something($other_stuff);
      }
    };