Quote:
Originally Posted by Cj Shadows
I just noticed something. In the Perl example, shouldn't you include the shebang? Also for good practice, use warnings;.
To make it clear.
Code:
#!/usr/bin/perl
# Hello world in perl
use warnings;
print "Hello World!\n";
|
Like I said I didnt write them, just grabbed a load off a hello world example site.