Skip to content

Instantly share code, notes, and snippets.

@myme
Last active December 22, 2015 15:48
Show Gist options
  • Save myme/6494685 to your computer and use it in GitHub Desktop.
Save myme/6494685 to your computer and use it in GitHub Desktop.
fromMaybe :: Maybe a -> String
fromMaybe Nothing = "Nothing"
fromMaybe Just a = show a
foo :: [Maybe Int]
foo = [ Just 10
, Just 20
, Nothing
, Just 40
]
main :: IO ()
main = mapM_ (putStrLn ∘ show) foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment