diff options
Diffstat (limited to 'hypsrc-test/src/UsingQuasiquotes.hs')
-rw-r--r-- | hypsrc-test/src/UsingQuasiquotes.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/hypsrc-test/src/UsingQuasiquotes.hs b/hypsrc-test/src/UsingQuasiquotes.hs new file mode 100644 index 00000000..34872d4d --- /dev/null +++ b/hypsrc-test/src/UsingQuasiquotes.hs @@ -0,0 +1,9 @@ +{-# LANGUAGE QuasiQuotes #-} +module UsingQuasiquotes where + +import Quasiquoter + +baz = [string| foo bar |] ++ [string| some + mulitline + quasiquote +|] |