Skip to content

Instantly share code, notes, and snippets.

@rkitover
Created March 29, 2013 03:14
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 rkitover/5268521 to your computer and use it in GitHub Desktop.
Save rkitover/5268521 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use Mojolicious::Lite;
get '/' => sub {
my $c = shift;
$c->render_text('URL: ' . $c->req->url);
};
app->start;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment