Printing Things out Slowly

public class printIt
{
public static void main (String args [])
{
new printIt ();
}
 public printIt ()
   {
   printSlow ("Hello! \n");
   printSlow ("How are you?");
   printSlow ("I am fine.");
   System.out.println ("Just moving a little slowly today.");
   printSlow ("Got to go now. \n");
   printSlow ("G O O D B Y E ");
   }
 public void printSlow (String s)
   {
   for (int i = 0 ; i < s.length () ; i++)
   {
   System.out.print ("" + s.charAt (i));
   //sleep for a bit after printing a letter
   try
   {
   Thread.sleep (100);
   }
   catch (InterruptedException m)
   {
   ;
   }
   }
   System.out.println ();
   }
   } //class!
 

Instructions