/****************************************************** This class is used to hold the results of evaluating a list of expressions. ******************************************************/ class IntList { int head; IntList tail; IntList(int h, IntList t) {head = h; tail = t;} void print() { System.out.println(head); if (tail != null) tail.print(); } }