packages feed

fourmolu-0.18.0.0: data/examples/declaration/value/function/multiline-strings-5-four-out.hs

{-# LANGUAGE MultilineStrings #-}

s1 =
    """
    a
    b
    c
    """

s1' = "a\nb\nc"

s2 =
    """
    \&  a
      b
      c
    """

s2_2 =
    """
    \&  a
    \&  b
    \&  c
    """

s2' = "  a\n  b\n  c"