File r37/lisp/csl/jlisp/LispOutputString.java artifact 79a7f2c4ea part of check-in e08999f63f
// // This file is part of the Jlisp implementation of Standard Lisp // Copyright \u00a9 (C) Codemist Ltd, 1998-2000. // import java.io.*; class LispOutputString extends LispStream { LispOutputString() { super("<string output>"); sb = new StringBuffer(); } void flush() { } void close() { sb = null; } void print(String s) { sb.append(s); } void println(String s) { sb.append(s); sb.append("\n"); } } // end of LispOutputString.java