Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nathanljones/hangman
https://github.com/nathanljones/hangman
Last synced: about 15 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/nathanljones/hangman
- Owner: nathanljones
- Created: 2023-08-27T10:49:34.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-11T18:34:07.000Z (over 1 year ago)
- Last Synced: 2023-09-12T03:12:42.798Z (over 1 year ago)
- Language: Rust
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Hangman Game In Rust
## Learning Rust via creating a simple hangman game
### MVP
1. Pick word from a hard coded list
2. Get user input
3. Check if letter is in word
4. Decrement lives if not
5. Update guess with letters found
6. Check if lives used up
7. Check if winning# TODO
- [ ] don't decrement if letter is already in the list - warn the player### Future Enhancements
- [ ] Read words in from a file
- [ ] Terminal display of hangman
- [ ] Output using a graphics engine