Skip to content

Instantly share code, notes, and snippets.

@dminuoso

dminuoso/f.hs Secret

Created January 9, 2023 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dminuoso/838f5df5a8ea8473b6661b0444ca332b to your computer and use it in GitHub Desktop.
Save dminuoso/838f5df5a8ea8473b6661b0444ca332b to your computer and use it in GitHub Desktop.
do x <- f
y <- g
h
p x y
f >>= \x ->
g >>= \y ->
h >>
p x y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment