Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Hello World

  • get
  • start
  • render
use Mojolicious::Lite;

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

morbo hello_world.pl

  • Visit http://127.0.0.1:3000/
  • Look at the console
  • Visit http://127.0.0.1:3000/other to see the error
  • Look at the console