packages feed

Cabal-1.18.0: tests/PackageTests/BenchmarkOptions/test-BenchmarkOptions.hs

module Main where

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

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