Help for this page

Select Code to Download


  1. or download this
    use threads;
    use threads::shared;
    ...
    my $thr = threads->create( \&worker );
    ...
    
  2. or download this
    use MCE::Hobo;
    use MCE::Shared;
    ...
    my $thr = MCE::Hobo->create( \&worker );
    ...
    
  3. or download this
    #!/usr/bin/perl
    
    ...
       return;
    }