Skip to content

Instantly share code, notes, and snippets.

@CoditCompany
Created August 25, 2017 11:00
Show Gist options
  • Select an option

  • Save CoditCompany/100187788c45eb2bbf2e734b2ab405db to your computer and use it in GitHub Desktop.

Select an option

Save CoditCompany/100187788c45eb2bbf2e734b2ab405db to your computer and use it in GitHub Desktop.
let bind f x = function
| Success x -> f x
| Failure errs -> Failure errs
let (>>=) x f = bind f x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment