Draw the whole scene by using helper functions to draw the different
parts. At first you can just put all of the images above
each other;
later you can change the placement so it looks the way you prefer.
The key step is to draw the word with underscores for the letters missed.
underscorizer: string(word) string(letters-guessed) -> string
(check-expect (underscorizer "wow" "w") "w_w")
(check-expect (underscorizer "wow" "ow") "wow")
Of course you can take in the correct guesses instead of all guesses, or you can take in anything else from your model that makes sense.
Decide on an approach:
Write tests that build up to your solution in the way we have discussed and demonstrated in class.
Many approaches work. If you have no preference, I recommend the first approach.