public class SL_CallNode extends ParseNode {
  // child 0: identifier (name of function to call) 
  // child 1...n: expression (passed arguments)

  public int getType() { return G_CALL; }
  public ParseNode interpret(SymbolTable st) throws InterpretException {
    // write me 
    return null;
  }
}
