Created
October 4, 2015 10:31
-
-
Save clrnd/67c5717affe6bba891f3 to your computer and use it in GitHub Desktop.
This file contains 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
module Main where | |
import Control.Concurrent.Async.Pool | |
main :: IO () | |
main = do | |
withTaskGroup 5 $ \g -> | |
mapTasks_ g $ map print [1..10] | |
putStrLn "Done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment