Help for this page

Select Code to Download


  1. or download this
    while ($test <= 100) {
        my $thr1 = threads->create(\&progress_count, $test);
        $test += 1;
        $thr1->join();
    }
    
  2. or download this
    while ($test <= 100) {
        $test += 1;
        print $test;
    }