haskell-src-meta-0.2: Parse source to template-haskell abstract syntax.

Language.Haskell.Meta.QQ.HsHere

Synopsis

Documentation

here :: QuasiQuoterSource

Example:

 a x = [$here| random "text" $(x + 1)
  something else|]

Is like:

 a x = " random \"text\" "++ show (x + 1) ++"\n  something else"