definition: |
addLogLn :: String -> IO () addLogLn s = do logfile <- getLogFile appendFile logfile (s ++ "\n") |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Adds a line to the log file |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
addLogLn |
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 |