5 lines
82 B
Haskell
5 lines
82 B
Haskell
{-# LANGUAGE QuasiQuotes #-}
|
|
import Text.RawString.QQ
|
|
|
|
"abc\ndef" == [r|abc
|
|
def|]
|