Skip to content

Instantly share code, notes, and snippets.

@SteveGilham
Last active August 29, 2015 14:19
Either<Left, Right>
// After the Haskell type
type internal Either<'a, 'b> =
| Left of 'a
| Right of 'b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment