Help for this page

Select Code to Download


  1. or download this
    my $name = 'John';
    my $html = get_html(); # sub name corrected
    ...
    HTML
    return $html;
    }
    
  2. or download this
    <p>Hi there <!-- name --></p>
    
  3. or download this
    my $html = get_html();
    $html =~ s/<!-- name -->/$name/;
    
  4. or download this
    my $html;
    {
    ...
      close $fh
        or die "cannot close $file: $!";
    }