packages feed

fourmolu-0.19.0.0: data/examples/declaration/value/function/multiline-strings-1-four-out.hs

{-# LANGUAGE MultilineStrings #-}

s =
    """
    a b\ \ c d e
    f g
    """

-- equivalent to
s' = "a b c d e\nf g"

weirdGap = """\65\ \0"""