Created
November 22, 2015 15:08
-
-
Save up1/981dab16b5c353c4438f to your computer and use it in GitHub Desktop.
My 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
class BusinessModel a where | |
data Event a :: * | |
data Command a :: * | |
init :: a | |
act :: Command a -> a -> Event a | |
apply :: Event a -> a -> a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment