WORDLE is a game in which the user has to guess a secret word every day.
To guess, clues are given to users based on the letters of the word they enter:
- Letter green: letter present and in the correct position
- Letter yellow: letter present but not in the correct position
- Letter red: letter not present in the secret word
This repo is distributed under the GNU GPLv3 license.
- Clone the repo:
git clone https://github.com/180Gio/WORDLE
- Install Java
- Go to the Server folder and compile:
javac -cp ".:./gson-2.10.jar" WordleServerMain.java WordleGame.java User.java TerminationHandler.java
(NOTE: if you are on Windows, replace:
with;
) - Go to Client folder and compile:
javac WordleClientMain.java TerminationHandlerClient.java
- Now you can run the Server (
java WordleServerMain
in Server folder) and the clients (java WordleClientMain
in Client folder)