File: IO.hs

package info (click to toggle)
haskell-foundation 0.0.30-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 928 kB
  • sloc: haskell: 9,124; ansic: 570; makefile: 6
file content (27 lines) | stat: -rw-r--r-- 715 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
-- |
-- Module      : Foundation.IO
-- License     : BSD-style
-- Maintainer  : Vincent Hanquez <vincent@snarc.org>
-- Stability   : experimental
-- Portability : portable
--
-- IO Routine
module Foundation.IO
    (
    -- * Terminal
      Foundation.IO.Terminal.putStrLn
    , Foundation.IO.Terminal.putStr
    , Foundation.IO.Terminal.stdin
    , Foundation.IO.Terminal.stdout
    -- * File
    , Foundation.IO.File.IOMode(..)
    , Foundation.IO.File.openFile
    , Foundation.IO.File.closeFile
    , Foundation.IO.File.withFile
    , Foundation.IO.File.hGet
    , Foundation.IO.File.hPut
    , Foundation.IO.File.readFile
    ) where

import qualified Foundation.IO.Terminal
import qualified Foundation.IO.File