this is some text that is
in the file <em>before</em> the actual
Perl code that we want to
execute.  It will be ignored if
we invoke with the -x switch.
#!/usr/bin/perl -w

print "This is executed\n";
#__END__ will be explained later, it terminates Perl processing
__END__
and this text follows the code and
is ignored also.
