Skip to content

Instantly share code, notes, and snippets.

@negima1976
Created September 5, 2013 08:50
Show Gist options
  • Save negima1976/6447630 to your computer and use it in GitHub Desktop.
Save negima1976/6447630 to your computer and use it in GitHub Desktop.
perl sample code
#!/usr/bin/perl
use strict;
use warnings;
my $app = sub {
my $env = shift;
return [ 200,
[ 'Content-Type' => 'text/plain' ],
[ "Hello World" ],
];
};
return $app;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment