Help for this page

Select Code to Download


  1. or download this
    print "Content-type: text/html\n\n";
    
  2. or download this
    use CGI;
    
    my $q = CGI->new;
    
    print $q->header;
    
  3. or download this
    use Mojolicious::Lite;
    
    ...
    };
    
    app->start;