in reply to Re^3: assign a string using multiline format
in thread assign a string using multiline format

heredocs are interpolerated the same way, as the termination string is, so <<EOF is the same as <<"EOF", but <<'EOF' won't be interpolerated.
read perldoc perlop -> Regexp Quote-Like Operators -> <<EOF
  • Comment on Re^4: assign a string using multiline format