haskell-language-server-2.15.0.0: plugins/hls-eval-plugin/test/testdata/TIO.expected.hs
-- 1. Support IO expressions
--
-- 2. Capture and show stdout
module TIO where
import Control.Concurrent (threadDelay)
{- Capture stdout, returns value.
Has a delay in order to show progress reporting.
>>> threadDelay 2000000 >> print "ABC" >> return "XYZ"
"ABC"
"XYZ"
-}