Hello World



examples/lite/hello_world.pl
use Mojolicious::Lite;

get '/' => { text => 'Hello World' };
 
app->start;

morbo hello_world.pl