gowordle

gowordle is a Wordle clone written in Go for the terminal.
How to run:
docker run --rm -it ghcr.io/benfrisbie/gowordle
Table of Contents
How to Play
Wordle is a game where you guess words in hopes of determining the final solution. After guessing a word, hints are given based on the letters positions in your guess compared to the actual solution. These hints should be used to determine yor next guess.
Hints
The hints are color coded:
| color |
description |
| π’ |
letter is in solution and in correct position |
| π‘ |
letter is in solution, but in wrong position |
| π΄ |
letter is not in solution |
Example
As you can see the final solution is along. Let's walk through the example one guess at a time:
- guess #1 =
rates
- π‘ -
a is in solution, but in wrong position
- π΄ -
r,t,e, and s are not in solution
- guess #2 =
ample
- π’ -
a is in correct position
- π‘ -
l is in solution, but in wrong position
- π΄ -
m,p, and e are not in solution
- guess #3 =
aloud
- π’ -
a, l, o are in correct positions
- π΄ -
u and d are not in solution
- guess #4 =
alone
- π’ -
a, l, o, n are in correct positions
- π΄ -
e is not in solution
- guess #5 =
along
- π’ -
a, l, o, n, g are in correct positions
Usage
docker run --rm -it ghcr.io/benfrisbie/gowordle [OPTIONS]
Options
| Name |
Description |
--background_color |
use background color for hints instead of text color |
--debug |
enable debug logging |
--max_guesses |
max number of guesses |
--seed |
random seed to use |