Help for this page

Select Code to Download


  1. or download this
    my $thr = threads->create(Better::saveBetter, @ParamList);
    ##.......................^^^^^^^^^^^^^^^^^^
    
  2. or download this
    my $thr = threads->create( \&Better::saveBetter, @ParamList );
    
  3. or download this
       my ($sbn, $cost, $ur) = @_;
    #..................^^^
    
       print "url:  $url\n";
    #..............^^^^
    
  4. or download this
       my( $sbn, $cost, $ur ) = @_;