6 lines
83 B
Haskell
6 lines
83 B
Haskell
module Foo (foo) where
|
|
import Language.Haskell.TH
|
|
|
|
foo :: ExpQ
|
|
foo = stringE "foo"
|