streamly/test/2-gather.hs
2017-06-26 02:21:53 +05:30

9 lines
151 B
Haskell

import Strands
import Control.Monad.IO.Class (liftIO)
main = do
xs <- gather $ do
liftIO $ putStrLn "hello"
return 5
print xs