Skip to content

Instantly share code, notes, and snippets.

@dmwit
Created May 2, 2019 19:59
Show Gist options
  • Save dmwit/ec3859dd3de56f3a835998b219b7a996 to your computer and use it in GitHub Desktop.
Save dmwit/ec3859dd3de56f3a835998b219b7a996 to your computer and use it in GitHub Desktop.
-- bad: everything in ... is nested
do
v <- foo
case v of
Matches v' -> ...
_ -> throwError "doesn't match"
-- good: ... is not nested
do
v <- foo
v' <- case v of
Matches v' -> return v'
_ -> throwError "doesn't match"
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment