The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Mojolicious::Lite;

get '/hello';

# Minimal "Hello World" application with template for profiling
app->start;
__DATA__

@@ hello.html.ep
Hello World!