CurryInfo: runcurry-3.0.0 / RunCurry.execAndDeleteCurryProgram

definition: Info
 
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: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Executes a Curry program with given Curry system arguments and
run-time arguments and delete the program after the execution:
failfree: Info
 <FAILING>
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_) |-> _}
name: Info
 execAndDeleteCurryProgram
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 String -> [String] -> [String] -> Prelude.IO Prelude.Int
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term