1 2 3 4 5 6 7 8
{-# LANGUAGE TemplateHaskell #-} module Foo (foo) where import FooTH (embedFile) foo :: String foo = $(embedFile "tests/extra-source-files/file.txt") ++ "!"