Help for this page

Select Code to Download


  1. or download this
    # Unpredictable-
    my $x = 1 if $y;
    # Safe-
    my $x;
    $x = 1 if $y;
    
  2. or download this
    <%init>
    my $bio = $c->flash->{'bio'};
    ...
       <p>My name is <% $bio->name |h %><br />
       My residence is at <% $bio->address |h %></p>
    % }