Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nathanljones/hangman


https://github.com/nathanljones/hangman

Last synced: about 15 hours ago
JSON representation

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