Skip to content

Instantly share code, notes, and snippets.

@konn
Created September 18, 2010 16:06
Show Gist options
  • Save konn/585795 to your computer and use it in GitHub Desktop.
Save konn/585795 to your computer and use it in GitHub Desktop.
{-# LANGUAGE TemplateHaskell #-}
import InfTree
main = print $(infTree)
{-# LANGUAGE TemplateHaskell #-}
module InfTree where
import Language.Haskell.TH
infTree :: ExpQ
infTree = appE (conE 'Just) infTree
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment