The SExpPrinter
structure implements a printer for S-Expressions.
This printer does not introduce any line breaks. For output that
is more readable, use the SExpPP
module.
Synopsis
structure SExpPrinter
Interface
val print : TextIO.outstream * SExp.value -> unit
Description
val print : TextIO.outstream * SExp.value -> unit
-
print (outS, v)
prints the S-Expression valuev
to the output streamoutS
.