Wordle
There are many alternative implementations of Wordle in R and other programming languages available on the internet and this project was not intented to provide a better Wordle clone than what is currently available. The goal of this project was to introduce myself to package development in R.
Installation
This package is not available on CRAN but can be installed directly from GitHub using the devtools package in R or any other library that allows you to download content from GitHub. Make sure the package is installed on your machine, otherwise run the command install.packages("devtools"). Once installed the wordle implementation can be installed as follows
# install.packages("devtools")
devtools::install_github("andreghl/wordle")
# play the game using
wordle::wordle()
The only function that is exported by the package is the wordle() function used to run the game in the console.