Mojolicious勉強

$ cat > hello.pl
use Mojolicious::Lite;
get '/' => {text => 'Hello World!'};
app->start;
$ morbo --listen=http://*:8080 hello.pl
[Fri May  4 23:49:01 2012] [info] Listening at "http://*:8080".
Server available at http://127.0.0.1:8080.
[Fri May  4 23:49:05 2012] [debug] Your secret passphrase needs to be changed!!!
[Fri May  4 23:49:05 2012] [debug] GET / (Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.168 Safari/535.19).
[Fri May  4 23:49:05 2012] [debug] 200 OK (0.002150s, 465.116/s).