Skip to content

Instantly share code, notes, and snippets.

@kraih
Created June 25, 2011 17:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kraih/1046696 to your computer and use it in GitHub Desktop.
Save kraih/1046696 to your computer and use it in GitHub Desktop.
use Mojolicious::Lite;
get '/' => sub {
render text => 'Hello World!';
};
app->start;
use Mojolicious::Lite;
get '/' => sub {
my $self = shift;
$self->render(text => 'Hello World!');
};
app->start;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment