definition:
|
invokeCurry :: [String] -> IO ()
invokeCurry args = do
currypath <- bmLoadPath
let cmd = unwords $ currySystem : ":set path" : currypath : args
--putStrLn $ "EXECUTING: " ++ cmd
ec <- system cmd
exitWith ec
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Invoke the Curry compiler with load path extended by package load path.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
invokeCurry
|
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
|