Hi I'm trying to learn scripting using Perl, but I'm having a rough start. I'm just trying a "hello world" first example, but I can't seem to get anything. I'm using Strawberry Perl, and here is the syntax I have saved in a notepad titled 'hello.pl':
#!/usr/bin/perl
print "hello world\n";
When...