$ # Note the first line has changed to include -w $ cat helloworld.perl #!/usr/bin/perl -w use strict; 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