Skip to content
Snippets Groups Projects
Commit 05bfa2a6 authored by sof's avatar sof
Browse files

[project @ 1998-09-30 09:00:41 by sof]

Included fixity info declared elsewhere; added 'seq' infix decl
parent 953bb889
No related merge requests found
......@@ -75,7 +75,28 @@ import PrelBounded
import Monad
import Maybe
import PrelErr ( error, seqError )
import IO
import IO ( IO, FilePath, IOError,
fail, userError, catch,
putChar, putStr, putStrLn, print,
getChar, getLine, getContents, interact,
readFile, writeFile, appendFile, readIO, readLn
)
{- Declared elsewhere:
PrelBase: infixr 9 .
PrelNum: infixr 8 ^, ^^, **
PrelBase: infixl *
PrelNum: infixl 7 /, %, `quot`, `rem`, `div`, `mod`
PrelBase: infixl 6 +, -
PrelBase: infixr 5 :, ++
PrelBase: infix 4 ==, /=, <. <=, >=, >
PrelBase: infixr 3 &&
PrelBase: infixr 2 ||
PrelBase: infixl >>, >>=
PrelBase: infixr $
-}
infixr 0 `seq`
-- These can't conveniently be defined in PrelBase because they use numbers,
-- or I/O, so here's a convenient place to do them.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment