Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 617 Bytes

README.md

File metadata and controls

12 lines (7 loc) · 617 Bytes

wordle-rs

A command-line clone of the popular Wordle game written in rust.

It uses the same word list as the official game, so you can compete against other players. Alternatively, you can pass the -r command line option, which will pick a random 5-letter word.

Running

Make sure you have rust and cargo installed, and then run cargo run or cargo run -- -r in your terminal.

Building

Make sure you have rust and cargo installed, and then run cargo build in your terminal for an unoptimized/dev build, or cargo build --release for an optimized build.