
/* 
   This file defines a program that a grid of
   randomly colored squares.  It uses the MosaicFrame
   class for the window.  See that class for
   more information.
*/

public class MosaicApplication {

   public static void main(String[] args) {
      
      MosaicFrame mosaic = new MosaicFrame(30,30);
          // Open a window with 30 rows and 30 columns of rectangles,
          // all initially black.  NOTE that the rows and columns
          // are numbered from 0 to 29!!

      mosaic.fillRandomly();


   }  // end of main()

}  // end of class MosaicApplication