Created
January 31, 2020 22:56
-
-
Save 7h3kk1d/52cd2549c51758b2a3a26376bc55cdcb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Prelude> [\x -> x + 1, \x -> x -1] <*> [1,2] | |
[2,3,0,1] | |
Prelude> [1,2] >>= \y -> [y+1, y-1] | |
[2,0,3,1] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment