HiWhen using a here document, statements that are on the same line as the initial <<EOD are interpreted as JavaScript & executed after the "heredoc statement". Is this a bug or a feature?
For example:
var a = 2;
print(<<EOD); a = 3; print("here")
a++;
${a}
EOD
print(a);
prints
a++;
2
here
3
Kind regards, Anthony
