Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    use Mojolicious::Lite;
    ...
        <%= $some_string %>
      </body>
    </html>
    
  2. or download this
    get '/goodbye'   => sub { 
      $_[0]->render( 'goodbye', some_string => "Goodbye world!" ); 
    ...
    @@ goodbye.html.ep
    ...........