Help for this page

Select Code to Download


  1. or download this
    <<END;
    sometext
    more
    END
    
  2. or download this
    $foo = 'danmcb';
    print <<END;
    ...
    # will print
    danmcb was here
    and here
    
  3. or download this
    my $text = $cgi->param('text') || <<END;
    some text passed via the cgi
    END