- or download this
if ( $function eq 'load' ) {
# this
...
else {
# any other stuff or something unexpected?
}
- or download this
my $junk;
($junk,my $headsent,my $headword) = split(/[sw]/,$h);
- or download this
# no $junk anymore and no doubled 'my' !
my ( $headsent, $headword ) = ( split /[sw]/, $h )[1,2];