definition:
|
execAndDeleteCurryProgram :: String -> [String] -> [String] -> IO Int
execAndDeleteCurryProgram progname curryargs rtargs = do
ec <- execCurryProgram progname curryargs rtargs
system $ installDir </> "bin" </> "cleancurry " ++ progname
removeFile progname
return ec
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Executes a Curry program with given Curry system arguments and
-- run-time arguments and delete the program after the execution:
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
execAndDeleteCurryProgram
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> [String] -> [String] -> Prelude.IO Prelude.Int
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|