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