What does a Perl program look like?
Perl programs are text files. Below is a very simple Perl script. There are just a couple of rules. • The first line (shebang line) tells the computer where to find the perl executable. Actually this is only needed in Unix but it’s good to stick in in case your program ends up there. There are a couple of other tricks you can do with this line when you have learned more.