Computing and Communications Center, Kagoshima University, Japan.
8 Dec. 1997.
Build in functions are:
The source programs
GUI of this interpreter.
The interpreter, eval and others. The method run, in this class, is a read-eval-print loop in the usual Lisp interpreter.
The Reader of this interpreter. This class translate an S expression into an internal LispObject.
The Writer of this interpreter. This class translate an internal LispObject into an S expression.
The class for internal expression of a lisp object. This class is the super class of all lisp object class.
The class for internal expression of an atom. This class is a subclass of the LispObject.
The class for internal expression of a list cell. This class is a subclass of the LispObject.
The class for internal expression of a symbol(name). This class is a subclass of the Atom.
The class for internal expression of a number. This class is a subclass of the Atom.
The class for (input) queue.
The class for a characters list. this class is used in the definition of CQueue.