Skip to content

Instantly share code, notes, and snippets.

@octopuscabbage
Created September 11, 2015 03:53
Show Gist options
  • Save octopuscabbage/522c2c8c22581df50ba3 to your computer and use it in GitHub Desktop.
Save octopuscabbage/522c2c8c22581df50ba3 to your computer and use it in GitHub Desktop.
f:: Maybe a -> Maybe b
f (Just a) = Just a
g:: Maybe a → Maybe b
g (Just a) = Just a
c = f . g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment