Skip to content

Instantly share code, notes, and snippets.

@KPCCoiL
Created June 20, 2014 09:42
Show Gist options
  • Save KPCCoiL/91cd1aefc4bc767793b1 to your computer and use it in GitHub Desktop.
Save KPCCoiL/91cd1aefc4bc767793b1 to your computer and use it in GitHub Desktop.
{-# LANGUAGE TemplateHaskell #-}
import Language.Haskell.TH
sequence [funD (mkName "main")
[clause [] (normalB (appE (varE 'putStrLn) (stringE "Hello, TH!"))) []]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment