2022-07-17 18:42:14 +03:00
2022-07-08 03:03:06 +03:00
2022-07-07 23:59:43 +03:00
2022-07-07 23:59:43 +03:00
2022-07-08 03:51:34 +03:00
2022-07-17 18:42:14 +03:00

Gordle

Go implementation of Wordle game

Building instructions

git clone https://git.dmitriy.icu/dm1sh/gordle
cd gordle
go mod tidy
go build .

Running instructions

% ./gordle --help

Usage of ./gordle:
  -f string
        Path to dictionary file with words of length -n. If specified, -n must be specified too (if the latter must not be equal to default value (default "./dictionary/5.txt")
  -n int
        Word size (default 5)

Testing instructions

go test # [-cover]

Dictionaries

To run game you also need dictionary files. By default gordle searches for them in ./dictionary/<n>.txt file, where <n> - number of characters, specified by -n flag. If want to use custom one, provide in -f flag path to txt file with strings separated by new line characters

Description
Go implementation of Wordle game
Readme 1.5 MiB
Languages
Go 100%