Artifact 79a7f2c4ea623c9aae05248aa07bafbe83db63350e18cb75d999561236510b50:
- Executable file
r37/lisp/csl/jlisp/LispOutputString.java
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 552) [annotate] [blame] [check-ins using] [more...]
// // 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