##
use CGI qw/:standard/;
print header(),
start_html(),
h3('hello'),
end_html();
####
# no strict, so..
$age = 31
# is the same as these (in the 'main' script):
$::age = 31
$main::age = 31
####
$CGI::NPH=1