Created
November 5, 2018 21:33
-
-
Save Akii/9660ea00aac1599267d014d22ac158e0 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
import Pipes | |
import qualified Pipes.Prelude as P | |
p1 = each [1,2,3 :: Int] | |
p2 = each [4,5,6 :: Int] | |
main :: IO () | |
main = do | |
runEffect ((p1 <> p2) >-> P.print) | |
{- | |
main | |
1 | |
2 | |
3 | |
4 | |
5 | |
6 | |
-} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment