Help for this page

Select Code to Download


  1. or download this
    my $x = 5;
    sub ct {
       threads->create(\&worker);
    }
    
  2. or download this
    sub ct {
       my $x = 5;
       threads->create(\&worker);
    }