Help for this page

Select Code to Download


  1. or download this
    while(@xyz) {
       my @copy = splice(@xyz,0,10);
    ...
       @working = @$xyz_chunk;
       print "debug: @working\n";
    }
    
  2. or download this
    foreach my $val (@xyz_chunk)
    {
       threads->create("sub", $val);
    }