ormolu-0.8.0.1: data/examples/declaration/value/function/multiline-strings-1.hs
{-# LANGUAGE MultilineStrings #-}
s =
"""
a b\
\ c d e
f g
"""
-- equivalent to
s' = "a b c d e\nf g"
weirdGap = """\65\ \0"""
{-# LANGUAGE MultilineStrings #-}
s =
"""
a b\
\ c d e
f g
"""
-- equivalent to
s' = "a b c d e\nf g"
weirdGap = """\65\ \0"""