Introducing Web::Simple A first taste of Web::Simple Wed Nov 4 01:15:00 2009 NAME Web::Simple - A quick and easy way to build simple web applications SYNOPSIS #!/usr/bin/perl use Web::Simple 'HelloWorld'; { package HelloWorld; dispatch [ sub (GET) { [ 200, [ 'Content-type', 'text/plain' ], [ 'Hello world!' ] ] }, sub () { [ 405, [ 'Content-type', 'text/plain' ], [ 'Method not allowed' ] ] } ]; } H