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