Help for this page

Select Code to Download


  1. or download this
    my $s = STR->new;
    $s->one;
    $s->two;
    $s->three;
    
  2. or download this
    threads->create( sub { 
        require STR; 
    ...
        $s->two;
        $s->three;
    } )->join;