definition:
|
imessage :: [String] -> IO ()
imessage [] = return ()
imessage [m] = putStrLn $ "You also need to generate the module " ++ m
imessage (m:m':ms) =
putStrLn $ "You also need to generate the modules "++(unwords $ m:m':ms)
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({[]}) |-> _ || ({:}) |-> _}
|
name:
|
imessage
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[String] -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|