ExpressImpl.mesa
Express provides the client a way to evaluate an arithmetic expression given in a rope (generally from the user), typically faster than Interpreter or JaM, especially if the same function is used repeatedly.
Created Thursday, June 28, 1984 10:25 am PDT
Last edited by Eric Nickell, July 18, 1984 4:04:21 pm PDT
ExpressImpl:
CEDAR
PROGRAM
IMPORTS ExpressParser, ExpressProc, ExpressToken, IO
EXPORTS Express
~ {
OPEN Express, EP: ExpressProc, ET: ExpressTree;
}.