jdb-lisp/src/edu/utexas/cs345/jdblisp/FormEntry.java
Jonathan Bernard 1642e5a51a Function lookup and calling implemented. Some SpecialForms implemented.
Special forms:
    DEFUN
    SETQ
    +
    -
    *
    /
2009-11-20 10:26:21 -06:00

10 lines
206 B
Java

package edu.utexas.cs345.jdblisp;
/**
* FormEntry
* @author Jonathan Bernard(jdbernard@gmail.com)
*/
public interface FormEntry {
SExp call(SymbolTable table, Seq arguments) throws LispException;
}