Skip to content

Instantly share code, notes, and snippets.

@jberger
Created December 9, 2019 16:01
Show Gist options
  • Save jberger/b9c89d0b3bc29ac791ef335517d29784 to your computer and use it in GitHub Desktop.
Save jberger/b9c89d0b3bc29ac791ef335517d29784 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use Mojolicious::Lite -signatures;
#app->defaults({text => 'Hello World'});
#get '/';
#get '/' => { text => 'Hello World' };
get '/' => sub ($c) {
$c->render(text => 'Hello World');
};
app->start;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment