Help for this page

Select Code to Download


  1. or download this
    use Mojolicious::Lite;
    
    ...
    
    @@ baz.html.ep
    The magic numbers are <%= $one %> and <%= $two %>.
    
  2. or download this
    get '/bar' => sub {
      my $self = shift;
    ...
    __DATA__
    @@ baz.html.ep
    <%= $one %> or <%= $two %>.
    
  3. or download this
    %= stash 'foo'
    % stash foo => 'bar';
       ...
    %= stash('name') // 'Somebody'