Help for this page

Select Code to Download


  1. or download this
    print <<'EndOfText';
    Hello! my name is "Bob". This is an old\new text.
    EndOfText
    
  2. or download this
    $str = 'user input';
    $str =~ s/^$/ /gm;   # add a space to each blank line
    print <<"EndOfGeneratedCode";
    ...
    $str
    
    EndOfGeneratedCode