Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 486 Bytes

readme.md

File metadata and controls

21 lines (16 loc) · 486 Bytes

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