stack-run-auto-0.1.0.0: app/Main.hs
module Main where
import StackRunAuto
import System.Environment (getArgs)
main :: IO ()
main = do
args <- getArgs
case args of
[] -> error "Usage: stack-run-auto <file>"
(fname:_) -> run (Options fname)