The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use CGI;
$COUNTER++;

BEGIN { $SIG{USR1} = 'IGNORE'; $SIG{TERM} = sub {"COMPILE TERM"} }

$SIG{USR1} = 'IGNORE';
$SIG{TERM} = sub {"RUN TERM"};

my $q = CGI->new;

chomp(my $greeting = <DATA>);

print $q->header, $greeting, scalar $q->param('name'), " counter=$COUNTER";

exit $q->param('exit_status') || 0;

__DATA__
Hello