Let\'s say I have this string literal with line breaks:
file :: String
file = \"the first line\\nthe second line\\nthe third line\"
Is there an
You can write multiline strings like so
x = "This is some text which we escape \
\ and unescape to keep writing"
Which prints as
"This is some text which we escape and unescape to keep writing"
If you want this to print as two lines
x = "This is some text which we escape \n\
\ and unescape to keep writing"
Which prints as
This is some text which we escape
and unescape to keep writing