Single string on multiple lines without `\n`

Old topic, but worth updating I think. As per Julia 1.7 release notes: " A backslash (\ ) before a newline inside a string literal now removes the newline while also respecting indentation"

julia> "a \
       b \
       c"
"a b c"
12 Likes