public class SL_BlockNode extends ParseNode {
  // n children, corresponding to the statements in the block 

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