CurryInfo: flatcurry-4.0.0 / FlatCurry.FilesRW.writeFlatCurryFile

definition:
writeFlatCurryFile :: String -> Prog -> IO ()
writeFlatCurryFile file prog = do
#ifdef  __KMCC__
  writeFile file (show prog)
#else
  writeFile file (showTerm prog)
#endif
  writeFlatCurryDataFile file prog
demand:
no demanded arguments
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:
<FAILING>
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:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term