1 #!/usr/bin/env perl 2 use Mojolicious::Lite; 3 4 get '/' => { 5 text => "I'll be your server tonight." }; 6 7 app->start;