My first "Hello World" script is not executing. I created a Plain Text script using TextEdit and saved it in my Documents folder with the name "simple_print".
In Terminal, I give a pwd command and get back the reply: /Users/username
When I type: perl /Documents/simple_print, I get the diagnostic Can't open perl script "/Documents/simple_print": No such file or directory
That seems to mean I am making some kind of mistake with the path name.
The first line in the program is: #! /usr/bin/perl
What is wrong?
Nick