2009-11-20 10:26:21 -06:00
|
|
|
package edu.utexas.cs345.jdblisp;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* FormEntry
|
|
|
|
* @author Jonathan Bernard(jdbernard@gmail.com)
|
|
|
|
*/
|
|
|
|
public interface FormEntry {
|
|
|
|
SExp call(SymbolTable table, Seq arguments) throws LispException;
|
2009-11-21 20:00:39 -06:00
|
|
|
HelpTopic helpinfo();
|
2009-11-20 10:26:21 -06:00
|
|
|
}
|