import java.awt.*;

/** 
 * Name:
 * Prism ID(gtx000x or jsmith3): 
 * Grading TA:
 **/ 
public class TurtleDance{
  
  /**
   * Method to pause all processes. 
   * @param interval the interval of time in milliseconds to pause for
   **/
  public static void pause(int interval){
    try{
      Thread.sleep(interval);
    }
    catch(Exception e){System.out.println("An Exception occurred!");}
  }
  
  
}