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