Sha256: 4bf3c1c59d7ecf63f283a99d9d7001f284a06d61e1cef57dd57d8f39cb4515e7
Contents?: true
Size: 1.06 KB
Versions: 74
Compression:
Stored size: 1.06 KB
Contents
# Hangman Implement the logic of the hangman game using functional reactive programming. [Hangman][] is a simple word guessing game. [Functional Reactive Programming][frp] is a way to write interactive programs. It differs from the usual perspective in that instead of saying "when the button is pressed increment the counter", you write "the value of the counter is the sum of the number of times the button is pressed." Implement the basic logic behind hangman using functional reactive programming. You'll need to install an FRP library for this, this will be described in the language/track specific files of the exercise. [Hangman]: https://en.wikipedia.org/wiki/Hangman_%28game%29 [frp]: https://en.wikipedia.org/wiki/Functional_reactive_programming ## Hints This exercise requires you to work with events. For more information, see [this page] (https://docs.microsoft.com/en-us/dotnet/articles/csharp/programming-guide/events/) . ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
74 entries across 74 versions & 1 rubygems