/*
 *  CS312 Assignment 2.
 *  On my honor, <NAME>, this programming assignment is my own work.
 *
 *  A program to print out the UT Tower in ASCII art form.
 *
 *  Name:
 *  email address:
 *  UTEID:
 *  Section 5 digit ID:
 *  Grader name:
 *  Number of slip days used on this assignment:
 */

public class Tower {

    // CS312 students, DO NOT ALTER THE FOLLOWING LINE except for the
    // value of the literal int.
    // You may change the literal int assigned to SIZE to any value from 2 to 100.
    // In the final version of the program you submit set the SIZE to 3.
    public static final int SIZE = 3;

    // CS312 students, if you add any constants DO NOT include the word SIZE
    // (including any variations on capitilazations such as sIZE, etc.) in
    // the name of that constant. So for example nothing like:
    //
    // public static final int BASE_SIZE2 = 5;
    //
    // If you do, you will flummox our grading script
    // and lose correctness points.

    public static void main(String[] args) {

    }

}
