1
Fork 0

Add read functionality.

master
Joshua Potter 2017-12-21 15:17:22 -08:00
parent 830ea728b4
commit 4a87ddd6d6
1 changed files with 8 additions and 0 deletions

View File

@ -259,6 +259,10 @@ import GHC.Num as X
, Integer
)
import GHC.Read as X
( Read, readList, readListPrec, readPrec, readsPrec
)
import GHC.Real as X
( Fractional, (/), fromRational, recip
, Integral, div, divMod, mod, quot, quotRem, rem, toInteger
@ -296,3 +300,7 @@ import System.IO as X
, stdout
, withFile
)
import Text.Read as X
( read
)