Created
April 16, 2016 10:02
-
-
Save chuck0523/1b8840490b9250b9f2e897814a2d0b1c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- update | |
type Action = DoneTodo | |
update : Action -> Model -> Model | |
update action model = | |
case action of | |
DoneTodo -> | |
{ model | | |
done = True | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment