// Allison Obourn
// CS& 141, Winter 2021
// Lecture 18

// This class creates an instance of our CounterGUI interface 
// that displays the word hello in a textbox next to the clicked
// button. 

public class CounterMain {
    public static void main(String[] args) {
       new CounterGUI();
    }
}