1 2 3 4 5 6 7 8 9
{-# LANGUAGE QuasiQuotes #-} module Test where import QQ f' = f . (+ 1) [pq| foo |] -- Expands to f :: Int -> Int f x = x + 1