ZMachine-0.0: Main.hs
module Main where
import System.Environment (getArgs)
import ZMachine.Startup (startStory)
main :: IO ()
main = do [story] <- getArgs
startStory story
return ()
module Main where
import System.Environment (getArgs)
import ZMachine.Startup (startStory)
main :: IO ()
main = do [story] <- getArgs
startStory story
return ()