import java.math.*;
import java.io.*;

public class SL_ReadNode extends ParseNode {
  // child 0: identifier (to read into)

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