in reply to OK, tell me WHY, this is only a hello world script

To find out location of the Perl interpreter, you can use either 'which' or 'whereis'; e.g.,
%which perl %whereis perl
Provided that Perl is installed and you know it's location, the following should work
#!/perl/is/here/perl -w use strict; use CGI; my $q = new CGI; print $q->header(); print "<b>Howdy!</b>";
--perlplexer