now it's all good, the script
#!/usr/bin/perl -w
print "header";
write "header" in terminal, and
#!/usr/bin/perl -w
use CGI qw(:standard);
use strict;
print header;
print "<b>hello, World!</b>";
write "hello, World!" in a browser with
http://localhost/cgi-bin/hello.cgi
now...