public interface ExprEval {
	
	String evaluateExpression(String expression);	

}


/* needs from other components:
 *
 * Symbol table: lookupSymbol
 *
 * Program control: some way to execute a procedure.
 *
 */