public class SL_WriteNode extends ParseNode {
  // child 0: expr (to write)

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