Skip to content

Instantly share code, notes, and snippets.

@s4553711
Created October 4, 2012 13:42
Show Gist options
  • Save s4553711/3833600 to your computer and use it in GitHub Desktop.
Save s4553711/3833600 to your computer and use it in GitHub Desktop.
Plack example
#!/usr/bin/perl
my $app = sub {
my $env = shift;
my $html = "<h1>This is created by Plack</h1>";
return [ 200 ,
[ 'Content-type' => 'text/html', 'charset' => 'utf-8' ] ,
[ $html ] ];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment