/* * File: WordleMain.java * ----------------- * This module is the starter file for the Wordle assignment. * BE SURE TO UPDATE THIS COMMENT WHEN YOU COMPLETE THE CODE. */ public class WordleMain { /* Startup code */ public static void main(String[] args) { new Wordle().run(); } }