https://github.com/andreghl/wordle
This is an R package that replicates the New York Times Wordle game in the R Console.
https://github.com/andreghl/wordle
Last synced: 2 months ago
JSON representation
This is an R package that replicates the New York Times Wordle game in the R Console.
- Host: GitHub
- URL: https://github.com/andreghl/wordle
- Owner: andreghl
- Created: 2024-06-30T19:47:53.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-06T11:37:48.000Z (almost 2 years ago)
- Last Synced: 2025-01-19T20:14:31.365Z (over 1 year ago)
- Language: R
- Homepage:
- Size: 144 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wordle in the R Console
I created this project to learn how to create a package in R. I do not aim to provide new functionality to R *(it is quite easy to find other similar projects on Github)*. If you wish to install this package on your device, run:
```r
# install.packages("devtools")
library(devtools)
install_github("andreghl/wordle")
library(wordle)
```
The game can be played once the package is loaded by running ```wordle()```. In the terminal, the game looks as follows:

For each attempt, the output is kept at a minimum, only presenting the necessary information. Also, the program does not check whether the attempted word is within the list of available words. This task is left to the player.