Last active
June 29, 2018 12:13
-
-
Save deque-blog/181c9938cd2b7c2e04fcbd27b861f6bc 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
testCombination = do -- a new computation in our DSL in which we: | |
p1 <- suggestedPostsFor 1 -- * compute the suggested posts for user 1 | |
p1' <- suggestedPostsFor 1 -- * compute the suggested posts for user 1 (again) | |
p2 <- suggestedPostsFor 2 -- * compute the suggested posts for user 2 | |
return (p1, p1', p2) -- * return a tuple with the result of these computations |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment