packages feed

hackport-0.9.0.0: cabal/cabal-testsuite/PackageTests/NewBuild/CmdBench/OptionsFlag/OptionsFlag.hs

module Main where

import System.Environment (getArgs)
import System.Exit (exitFailure, exitSuccess)

main :: IO ()
main = do
  args <- getArgs
  if args == ["1", "2 3", "4", "5 6"]
     then exitSuccess
     else putStrLn ("Got: " ++ show args) >> exitFailure