Help for this page

Select Code to Download


  1. or download this
    use threads;
    $thr = threads->new(\&sub1);
    sub sub1 {
    print "In the thread\n";
    }