$ # Note we have now added another line to the file $ cat helloworld.perl #!/usr/bin/perl print "Hello World\n"; $ # Now give it execute permission (only necessary once) $ chmod +x helloworld.perl $ # Now lets run it and get a look at the output $ ./helloworld.perl Hello World