Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env plackup
    
    ...
            [ 'Hello world' ],
        ];
    };
    
  2. or download this
    #!/usr/bin/env perl
    use Plack::Loader;
    my $app = Plack::Util::load_psgi("/full/path/to/greeting.psgi");
    Plack::Loader->auto->run($app);