mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-11 13:59:31 -06:00
14 lines
206 B
Haskell
14 lines
206 B
Haskell
module Main where
|
|
|
|
import GFC
|
|
import GFI
|
|
|
|
import System.Environment (getArgs)
|
|
|
|
main :: IO ()
|
|
main = do
|
|
args <- getArgs
|
|
case args of
|
|
"--batch":args -> mainGFC args
|
|
_ -> mainGFI args
|