View Single Post
Old 06-11-2007, 05:11 AM   #36 (permalink)
Cj Shadows
McFox Sandwich
 
Join Date: Jul 2006
Posts: 463
Reputation: 10
Default

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";
Cj Shadows is offline