Skip to content

Instantly share code, notes, and snippets.

@yoshuawuyts
Last active August 29, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yoshuawuyts/10018526 to your computer and use it in GitHub Desktop.
Save yoshuawuyts/10018526 to your computer and use it in GitHub Desktop.

Proposal hangman

Goals

The goal is to build a working version of the classic game 'hangman'. A user should keep inputting letters until he/she has guessed the word.

Definition of Done

The implementation is considered complete when:

  • the computer selects a random word from a dictionary
  • the user can input letters to incrementally guess the word
  • the user receives feedback on his input
  • the user can view the previously guessed letters
  • the user can restart the game

Implementation

The game will consist of:

  • A single view
  • A single process
  • No intents
  • Unit tests to some extent.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment