This repository is a collection of games implemented in Rust. Each game is contained within its own submodule. Currently, the repository includes the following games:
- Wordle: A command-line implementation of the popular word-guessing game.
- Guess: A number guessing game.
- Ensure you have Rust installed on your system.
- Clone this repository along with its submodules:
git clone --recurse-submodules https://github.com/mambucodev/games.rs.git
- Navigate to the project directory:
cd games.rs
Wordle is a command-line implementation of the popular New York Times word game. The game challenges players to guess a five-letter word in six attempts, providing feedback using color-coded letters.
For more details, visit the Wordle repository.
Guess is a simple number guessing game where the player tries to guess a randomly generated number within a specified range.
For more details, visit the Guess repository.
- Navigate to the
wordle.rsdirectory:cd wordle.rs - Run the game using Cargo:
cargo run
- Navigate to the
guess.rsdirectory:cd guess.rs - Run the game using Cargo:
cargo run
Feel free to contribute to this collection by adding new games or improving existing ones. Fork the repository, make your changes, and submit a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.
Enjoy playing and developing games in Rust!