Last active
September 6, 2016 14:34
-
-
Save donabrams/5e2fe02033b5153d9bf2f147bdbe0e2e to your computer and use it in GitHub Desktop.
State Machine in Haskell
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
Post = Draft | PublishedPost | UnpublishedPost | |
publish :: Post -> PublishedPost | |
PublishedPost | |
unpublish :: Post -> UnpublishedPost | |
UnpublishedPost |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment