#!/usr/bin/perl use strict; use Mojolicious::Lite; get '/' => {text => 'Hello World'}; app->start;