mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-13 23:09:31 -06:00
15 lines
194 B
Haskell
15 lines
194 B
Haskell
module Main where
|
|
|
|
import GF.Devel.GFC
|
|
import GF.Devel.GFI
|
|
|
|
import System (getArgs)
|
|
|
|
main :: IO ()
|
|
main = do
|
|
xx <- getArgs
|
|
case xx of
|
|
"--batch":args -> mainGFC args
|
|
_ -> mainGFI xx
|
|
|