Skip to content

Instantly share code, notes, and snippets.

@mwotton
Created February 25, 2012 07:00
Show Gist options
  • Save mwotton/1907137 to your computer and use it in GitHub Desktop.
Save mwotton/1907137 to your computer and use it in GitHub Desktop.
do a <- actionA
b <- actionB
c <- actionC
return (final a b c)
=>
final <$> actionA <*> actionB <*> actionC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment