MESG_outstream : TextIO.outstream ref
The default value of MESG_outstream is TextIO.stdOut.
- val ostrm = TextIO.openOut "foo"; > val ostrm = <outstream> : outstream - MESG_outstream := ostrm; > val it = () : unit - HOL_MESG "Nattering nabobs of negativity."; > val it = () : unit - TextIO.closeOut ostrm; > val it = () : unit - val istrm = TextIO.openIn "foo"; > val istrm = <instream> : instream - print (TextIO.inputAll istrm); <<HOL message: Nattering nabobs of negativity.>>