]> Git — Sourcephile - haskell/symantic.git/blob - Language/Symantic/Parsing/EBNF/Print.hs
Fix module including.
[haskell/symantic.git] / Language / Symantic / Parsing / EBNF / Print.hs
1 module Parsing.EBNF.Print where
2
3 import Data.Text.IO as Text
4 import Control.Monad
5
6 import Language.Symantic.Typing
7 import Language.Symantic.Parsing
8 import Language.Symantic.Compiling (gram_term)
9
10 main :: IO ()
11 main = do
12 forM_ gram_lexer render
13 forM_ gram_type render
14 forM_ gram_term render
15 where render = Text.putStrLn . renderEBNF . unCF