Skip to content

Instantly share code, notes, and snippets.

@up1
Created November 22, 2015 15:08
Show Gist options
  • Save up1/981dab16b5c353c4438f to your computer and use it in GitHub Desktop.
Save up1/981dab16b5c353c4438f to your computer and use it in GitHub Desktop.
My Haskell
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