Skip to content

Instantly share code, notes, and snippets.

@genehack
Created May 18, 2012 21:33
Show Gist options
  • Save genehack/2727704 to your computer and use it in GitHub Desktop.
Save genehack/2727704 to your computer and use it in GitHub Desktop.
Smallest possible Cat app that is also a quine? (after http://paste.scsys.co.uk/198326 by t0m aka @bobtfish)
use base 'Catalyst', 'MooseX::MethodAttributes::Inheritable';
use File::Slurp;
sub dispatch { my $b = read_file(__FILE__);shift()->res->body($b) }
__PACKAGE__->setup;
__PACKAGE__->psgi_app;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment