I'm trying to learn Perl, but I can't get this simple script to work:
<script>
#!/usr/bin/perl -w
print "Hello World";
</script>
When I save it to my desktop as test.pl and try to run it from the terminal by typing, "perl test.pl", I get nothing. Changing the file permissions doesn't help, either.
Any ideas?
Thanks,
Jacob