I have a long string literal, `"foobarbaz ${foo} $...
# announcements
j
I have a long string literal,
"foobarbaz ${foo} ${bar} ${baz}"
that exceeds my coding standard's max line length. I want to break it into multiple lines (with no newlines in the resultant string). can I break it up without using string appends? (or are these string appends resolved at compile-time so it's not a problem?)