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