Skip to content

Instantly share code, notes, and snippets.

@LeifW
Created February 24, 2015 22:54
Show Gist options
  • Select an option

  • Save LeifW/952d123340276b41e821 to your computer and use it in GitHub Desktop.

Select an option

Save LeifW/952d123340276b41e821 to your computer and use it in GitHub Desktop.
foo : Maybe Type -> Type
foo Nothing = String
foo (Just x) = x
a : foo Nothing
a = "Hello"
b : foo (Just Int)
b = 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment