Actions Status MetaCPAN Release

NAME

App::Greple::wordle - wordle module for greple

SYNOPSIS

greple -Mwordle

DESCRIPTION

App::Greple::wordle is a greple module that implements the Wordle game. Answer correctness is checked by regular expression.

This module supports multiple word datasets. Use the --data option to choose different word datasets such as the original Wordle word list or the New York Times Wordle word list.

Rules are almost the same as the original game, but answers are different. Use the --compat option to get answers compatible with the original game.

OPTIONS

COMMANDS

A five-letter word is processed as an answer. Other input is taken as a command.

These commands can be connected in series. For example, the following command shows possible words starting with letter z.

hint ^z

The next example shows all words that do not include any letter of audio and rents, and are made of unique characters.

!audio !rents u

EXAMPLE

Basic gameplay

1: solid                    # try word "solid"
2: panic                    # try word "panic"
3: hint                     # show hint
3: !solid !panic =eft uniq  # search word exclude(solidpanic) include(eft)
3: wheft                    # try word "wheft"
4: hint                     # show hint
4: datum                    # try word "datum"
5: tardy                    # try word "tardy"

Using different datasets

greple -Mwordle --data=NYT            # Use NYT Wordle word list
greple -Mwordle --data=ORIGINAL       # Use original word list (default)
greple -Mwordle --data=NYT -n0        # First word in NYT dataset (cigar)

BUGS

A character in the wrong position is always colored yellow, even if it appears in green elsewhere.

INSTALL

CPANMINUS

$ cpanm App::Greple::wordle

SEE ALSO

App::Greple::wordle, https://github.com/kaz-utashiro/greple-wordle

App::Greple, https://github.com/kaz-utashiro/greple

https://qiita.com/kaz-utashiro/items/ba6696187f2ce902aa39

https://github.com/alex1770/wordle

https://wordfinder.yourdictionary.com/wordle/answers/

AUTHOR

Kazumasa Utashiro

LICENSE

Copyright 2022-2025 Kazumasa Utashiro.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.