| Beable van Polasm 2004-03-18, 6:47 pm |
| JC <jwcorpening@verizon.net> writes:
> Thanks for replying to my original post and for pointing me in some
> directions. As I mentioned, I code alot with PERL, but I'm pretty
> much self-taught, so I'm sure that I learned incorrectly and am at a
> very intro level, still.
>
>
> Nope, I don't know enough to know otherwise.
Call subroutines with parentheses, like this:
mysub();
sub mysub
{
print "doidy doidy doidy\n";
}
>
> Nope, don't know what these mean.
These are module names. Take a look at http://search.cpan.org and
type these names in. Search for documentation on installing modules,
like "perldoc perlmodinstall" for example. Using modules will make
writing programs easier.
--
Why doesn't a twirp like you stop giving advice to the big boys like
me and Mel who know how to talk to people without putting them to
sleep? -- George Hammond
|