Skip to content

Instantly share code, notes, and snippets.

@halfzebra
Created April 5, 2016 22:31
Show Gist options
  • Save halfzebra/e447abd8c10d61d1fbe558e02b8415c6 to your computer and use it in GitHub Desktop.
Save halfzebra/e447abd8c10d61d1fbe558e02b8415c6 to your computer and use it in GitHub Desktop.
Exposing union type in Elm
-- module Actions (Action(NoOp, UpdateModel))
module Actions (Action(..))
where
type Action
= NoOp
| UpdateModel Int
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment