CurryInfo: curry-repl-1.2.0 / REPL.Main.processSysCall

definition:
processSysCall :: ReplState -> String -> IO (Maybe ReplState)
processSysCall rst cmd
  | null cmd  = skipCommand "missing system command"
  | otherwise = system cmd >> return (Just rst)
demand:
argument 2
deterministic:
deterministic operation
documentation:
--- Execute a call to a system command
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
processSysCall
precedence:
no precedence defined
result-values:
_
signature:
REPL.State.ReplState -> String
-> Prelude.IO (Prelude.Maybe REPL.State.ReplState)
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term