07-02-2026, 11:39 AM
A small version of Wordle. For those not familiar with Wordle, these are the rules:
Basic Gameplay
Objective: Guess the secret five-letter word (the "Wordle") within six tries
Valid Guesses: Each guess must be a valid five-letter English word; numbers, symbols, or words of other lengths are not allowed
Submission: Type your guess (it is submitted automatically when you type the fifth letter)
Feedback System
Green Tile: The letter is in the correct position
Orange Tile: The letter is in the word but in the wrong position
Gray Tile: The letter is not in the word at all
This version has been coded so that it will only accept the 26 letters of the alphabet (other key presses are ignored with the exception of the space bar, which is only recognised once the game has finished). It uses 2 lists of 5 letter words - a complete one which includes really obscure words, many of which I was not aware of, and a smaller list of the most common words in use - there are about 15,000 and 3,000 words in each list. The target word, which you have to guess, is selected at random from the smaller list, and your guesses are checked against the more complete list.
It should be pretty simple to change the language used in this, should you wish. You will just need to source 2 similar lists of 5 letter words in your preferred language, and if your language does not use the same 26 letters that the UK language uses, amend the routine that checks which letters have been entered.
wordle.zip (Size: 751.79 KB / Downloads: 7)
Basic Gameplay
Objective: Guess the secret five-letter word (the "Wordle") within six tries
Valid Guesses: Each guess must be a valid five-letter English word; numbers, symbols, or words of other lengths are not allowed
Submission: Type your guess (it is submitted automatically when you type the fifth letter)
Feedback System
Green Tile: The letter is in the correct position
Orange Tile: The letter is in the word but in the wrong position
Gray Tile: The letter is not in the word at all
This version has been coded so that it will only accept the 26 letters of the alphabet (other key presses are ignored with the exception of the space bar, which is only recognised once the game has finished). It uses 2 lists of 5 letter words - a complete one which includes really obscure words, many of which I was not aware of, and a smaller list of the most common words in use - there are about 15,000 and 3,000 words in each list. The target word, which you have to guess, is selected at random from the smaller list, and your guesses are checked against the more complete list.
It should be pretty simple to change the language used in this, should you wish. You will just need to source 2 similar lists of 5 letter words in your preferred language, and if your language does not use the same 26 letters that the UK language uses, amend the routine that checks which letters have been entered.
wordle.zip (Size: 751.79 KB / Downloads: 7)



