Help for this page

Select Code to Download


  1. or download this
    PSGI: Failed to run Perl Application: 
    Undefined subroutine &main::1 called.
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    get '/' => {text => 'Hello World'};
    
    app->start;
    
  3. or download this
    {
       "type": "perl",
    ...
          "MOJO_MODE": "production"
       }
    }
    
  4. or download this
    #!/usr/bin/perl
    use strict;
    ...
        enable 'ContentLength';
        $app;
    };