// --------------------------------------------------------------
// Screen.java
// Mini-terminal controller for vt100 (ANSI) terminals
// Author: M.B. Feldman, The George Washington University
// Last Modified: October 2002
// --------------------------------------------------------------
package csci53;
public class Screen {

  public static void clearScreen()
  {
     System.out.println("\033" + "[2J");
  }

  public static void beep()
  {
     System.out.println("\007");
  }

  public static void moveCursor(int row, int column)
  {
     System.out.print("\033" + "[" + row + ";" + column + "f");
  }

} // End of class Screen