Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/src/prelude/PreludeIO/PutChar.hs
module Prelude(putChar) where import IO putChar :: Char -> IO () putChar c = hPutChar stdout c