packages feed

ormolu-0.8.1.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"""