add golf example
[catagits/Web-Simple.git] / examples / golf / golf.cgi
1 #!/usr/bin/perl
2 use Web::Simple;
3 sub dispatch_request { [ 200, [ 'Content-type', 'text/plain' ], [ 'Hello world!' ] ] }
4 __PACKAGE__->run_if_script;