definition:
|
writeAbstractCurryFile :: String -> CurryProg -> IO ()
writeAbstractCurryFile file prog =
#ifdef __KMCC__
writeFile file (show prog)
#else
writeFile file (showTerm prog)
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Writes an AbstractCurry program into a file in ".acy" format.
--- The first argument must be the name of the target file
--- (with suffix ".acy").
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
writeAbstractCurryFile
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> AbstractCurry.Types.CurryProg -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|