Skip to content

Instantly share code, notes, and snippets.

@jberger
Created February 16, 2015 16:05
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 jberger/30cea1402282dc777275 to your computer and use it in GitHub Desktop.
Save jberger/30cea1402282dc777275 to your computer and use it in GitHub Desktop.
use Inline::Perl5;
my $p5 = Inline::Perl5.new;
$p5.use('Mojolicious::Lite');
my $app = $p5.call('app');
$app.routes.get('/', {'text' => 'hello world'});
$app.start(@*ARGS);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment