Skip to content

Instantly share code, notes, and snippets.

@kraih
Created April 28, 2011 05:44
Show Gist options
  • Save kraih/945863 to your computer and use it in GitHub Desktop.
Save kraih/945863 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use Mojolicious::Lite;
get '/' => sub {
shift->render_text('Hello Mojo!');
};
app->start;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment