Skip to content

Instantly share code, notes, and snippets.

@teivah
Last active March 16, 2024 14:30
Show Gist options
  • Save teivah/d18d807dd10bcb9af63f866db67e5a23 to your computer and use it in GitHub Desktop.
Save teivah/d18d807dd10bcb9af63f866db67e5a23 to your computer and use it in GitHub Desktop.
withMonad :: Int -> String -> Maybe String
withMonad age name = validateAge age >>= \_ -> return (greet name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment