Skip to content

Instantly share code, notes, and snippets.

@finn
Created May 23, 2009 15:34
Show Gist options
  • Save finn/116661 to your computer and use it in GitHub Desktop.
Save finn/116661 to your computer and use it in GitHub Desktop.
#!/opt/local/bin/perl
use CGI::Fast qw(:standard);
my $COUNTER = 0;
while (new CGI::Fast) {
print header;
print start_html("FastCGI Hello, world!");
print
p("Hello, world!"),
p("Invocation number: ", b($COUNTER++)),
p("PID: ", b($$));
print end_html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment