public class reactorMain 
{
public static void main (String [] args)
   {
   reactorClass chernobyl = new reactorClass();
   
   // slowly increase reactor power
   for (int x=0; x<100; x++)
      {
	  try { 
	      chernobyl.increasePowerLevel(); 
	      }
	  catch (highTempException hte)
	     {
		  System.out.println( "ERROR CAUGHT");
		  System.out.println( hte.getMessage() );
		  hte.printStackTrace();
		  System.exit(0);
		  } // end catch
	  
      } // end for
   
   } // end main
   
}  // end class
