microScheme
eval.hpp
Go to the documentation of this file.
1 
7 #ifndef EVAL_HPP
8 #define EVAL_HPP
9 
10 #include "cons.hpp"
11 
12 using namespace std;
13 
20 Cell* eval(Cell* const c);
21 
22 #endif // EVAL_HPP
Cell * eval(Cell *const c)
Evaluate the expression tree whose root is pointed to by c (error if c does not hold a well-formed ex...