##
…
sub remove_spaces {
my ($input, $junk) = @_ ;
$input =~ s/\s+/ /g ;
$input =~ s/^ //g ;
$input =~ s/ $//g ;
chomp($input) ;
return $input ;
}
…
####
#!C:\strawberry\perl\bin\perl.exe
#use lib 'C:\strawberry\perl';
#use subs ;
…
$line = remove_spaces($line);
…
####
C:\strawberry\perl>test.pl
Undefined subroutine &main::remove_spaces called at C:\strawberry\perl\test.pl line 18, line 1.