grddavies / wordler

An R implementation of the WORDLE game

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wordler

R-CMD-check CRAN status

An R implementation of the popular WORDLE game.

Gameplay

To start a game, run the following R code in an interactive session.

library(wordler)
play_wordler()

The introductory instructions are displayed.

You must then attempt to correctly guess a five-letter word in (at most) six attempts.

After each guess, the letters are coloured to indicate how well the guess matches the target word.

Green letters are in the word and in the right position (but may be repeated elsewhere). Yellow letters are present (at least once) somewhere in the target word.

Each guess must be a valid word.

Installation

CRAN

wordler is available on CRAN.

install.packages("wordler")

Github

You can install the latest version directly from github using the devtools R package.

# install.packages("devtools")
devtools::install_github("DavidASmith/wordler")

Further Reading

For more information, see the vignette or reference manual for the latest release.

About

An R implementation of the WORDLE game

License:Other


Languages

Language:R 100.0%