File r37/lisp/csl/jlisp/LispOutputString.java artifact 79a7f2c4ea part of check-in a57e59ec0d


//
// 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




REDUCE Historical
REDUCE Sourceforge Project | Historical SVN Repository | GitHub Mirror | SourceHut Mirror | NotABug Mirror | Chisel Mirror | Chisel RSS ]