Skip to content

Instantly share code, notes, and snippets.

@winny-
Created May 24, 2020 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save winny-/616a9192a1b7ada7e729724f3b30186b to your computer and use it in GitHub Desktop.
Save winny-/616a9192a1b7ada7e729724f3b30186b to your computer and use it in GitHub Desktop.
-- This works: ghc -o h h.hs && ./h
--
-- This does not work: ghci h.hs
-- Get the following error: ghc: <stdout>: hFlush: illegal operation (handle is closed)
import System.IO
main = do
putStrLn "hello world"
hClose stdout
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment