CurryInfo: verify-3.1.0 / ToVerifier.main

definition: Info
 
main :: IO ()
main = do
  argv <- getArgs
  let (funopts, args, opterrors) = getOpt Permute options argv
      opts = foldl (flip id) defaultOptions funopts
  unless (null opterrors)
         (putStr (unlines opterrors) >> putStrLn usageText >> exitWith 1)
  when (optVerb opts > 0) $ putStr cvBanner 
  when (null args || optHelp opts) (putStrLn usageText >> exitWith 1)
  mapM_ (generateTheoremsForModule opts) (map stripCurrySuffix args)
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
indeterministic: Info
 might be indeterministic
infix: Info
 no fixity defined
name: Info
 main
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Prelude.IO ()
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term