#!/usr/bin/perl -w -T # Change the above line to the location of your Perl executable use strict; use CGI; use CGI::Carp qw(fatalsToBrowser); my $query = new CGI; print $query->header(); print "Hello world!"; exit;