Help for this page

Select Code to Download


  1. or download this
     my $thr = threads->create(\&function);
     $thr->join;
    
    sub function {
    }
    
  2. or download this
    use threads;
    use threads::shared;
    ...
        
    }