Skip to content

Instantly share code, notes, and snippets.

@vvviiimmm
Created January 7, 2019 17:02
Show Gist options
  • Save vvviiimmm/c76f43e1ec1faf041cd2dd9284f97145 to your computer and use it in GitHub Desktop.
Save vvviiimmm/c76f43e1ec1faf041cd2dd9284f97145 to your computer and use it in GitHub Desktop.
-- Simple sum type with two options
data Maybe a = Just a | Nothing
-- Safe total function that never throws
divide :: Int -> Int -> Maybe Int
divide dividend divisor = if divisor == 0 then Nothing else Just (dividend / divisor)
-- Maybe is available in Data.Maybe module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment