definition: |
main :: IO () main = do args <- getArgs if "-V" `elem` args || "--version" `elem` args then putStrLn $ "Curry Package Manager, version " ++ packageVersion ++ " (" ++ cpmDate ++ ")" else do parseResult <- return $ parse (unwords args) (optionParser args) "cypm" case parseResult of Left err -> do putStrLn cpmBanner putStrLn err --putStrLn "(use option -h for usage information)" exitWith 1 Right r -> case applyParse r of Left err -> do putStrLn cpmBanner --printUsage "cypm" 80 (optionParser args) putStrLn err exitWith 1 Right opts -> runWithArgs opts |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
indeterministic: |
might be indeterministic |
infix: |
no fixity defined |
name: |
main |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Prelude.IO () |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |