The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

DESCRIPTION

This rule rewrites heredoc as double-quote strings. For example, this code:

    print <<'EOF';
      Nihao
    EOF

... is rewritten as:

    print "  Nihao\n";