Hi,
> I don't get that either !!!
>
> #!/bin/perl
> ### junk.pl ###
> use strict;
> use warnings;
>
> sayhello();
>
>
> sub sayhello {
>
> print "hello\n";
>
> }
thats because you're not using perls prototyping feature at all.
if you define your sub that way:
sub sayhallo() {
print "hello\n";
}
then you'll get one.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/
