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"
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"