definition: |
printUsageMessage :: IO () printUsageMessage = do args <- getArgs putStrLn $ unlines [ "ERROR: Illegal arguments for CurryDoc: " ++ unwords args , "" , "Usage:" , "curry-doc <options> [--html|--tex|--cdoc] [<doc_dir>] <module>" , "curry-doc <options> --noindexhtml <doc_dir> <module>" , "curry-doc <options> --onlyindexhtml <doc_dir> <modules>" , "curry-doc <options> --libsindexhtml <doc_dir> <modules>" , "" , "where <options> can be:" , " --title s : Title of the main HTML documentation page" , " --use dir@url: use for all Curry programs in <dir> the documentation" , " already stored at <url>" , " --nomarkdown : do not process markdown code in comments" ] |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{() |-> _} |
name: |
printUsageMessage |
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 |