Comment by librasteve
Comment by librasteve 10 hours ago
The Raku language (https://raku.org) nails multiline strings and avoids the triple quotes issues mentioned in the OP.
say q:to/END/;
Here is
some multi line
string
END
https://docs.raku.org/syntax/heredocs%20%3Ato
The best multiline strings are those where you can have proper indentations without having to guess how indentation is handled. bonus points for making nesting easy and making copy-pasting work without breaking indentation.
To my knowledge only Zig's multiline strings work this way