Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gesh
GHC
Commits
003d0a0b
Commit
003d0a0b
authored
26 years ago
by
sof
Browse files
Options
Downloads
Patches
Plain Diff
[project @ 1998-08-27 13:09:44 by sof]
Surplus to requirements (cf. last IO commit)
parent
8f3eae42
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ghc/lib/std/PrelIO.lhs
+0
-78
0 additions, 78 deletions
ghc/lib/std/PrelIO.lhs
with
0 additions
and
78 deletions
ghc/lib/std/PrelIO.lhs
deleted
100644 → 0
+
0
−
78
View file @
8f3eae42
%
% (c) The AQUA Project, Glasgow University, 1994-1996
%
\section[PrelIO]{Module @PrelIO@}
Input/output functions mandated by the standard Prelude.
\begin{code}
{-# OPTIONS -fno-implicit-prelude #-}
module PrelIO (
IO, FilePath, IOError,
fail, userError, catch,
putChar, putStr, putStrLn, print,
getChar, getLine, getContents, interact,
readFile, writeFile, appendFile, readIO, readLn
) where
import IO
import PrelHandle
import PrelIOBase
import PrelBase
import PrelRead
\end{code}
\begin{code}
putChar :: Char -> IO ()
putChar c = hPutChar stdout c
putStr :: String -> IO ()
putStr s = hPutStr stdout s
putStrLn :: String -> IO ()
putStrLn s = do putStr s
putChar '\n'
print :: Show a => a -> IO ()
print x = putStrLn (show x)
getChar :: IO Char
getChar = hGetChar stdin
getLine :: IO String
getLine = hGetLine stdin
getContents :: IO String
getContents = hGetContents stdin
interact :: (String -> String) -> IO ()
interact f = do s <- getContents
putStr (f s)
readFile :: FilePath -> IO String
readFile name = openFile name ReadMode >>= hGetContents
writeFile :: FilePath -> String -> IO ()
writeFile name str
= openFile name WriteMode >>= \hdl -> hPutStr hdl str >> hClose hdl
appendFile :: FilePath -> String -> IO ()
appendFile name str
= openFile name AppendMode >>= \hdl -> hPutStr hdl str >> hClose hdl
readIO :: Read a => String -> IO a
-- raises an exception instead of an error
readIO s = case [x | (x,t) <- reads s, ("","") <- lex t] of
[x] -> return x
[] -> fail (userError "PreludeIO.readIO: no parse")
_ -> fail (userError
"PreludeIO.readIO: ambiguous parse")
readLn :: Read a => IO a
readLn = do l <- getLine
r <- readIO l
return r
\end{code}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment