planet-mitchell-0.1.0: src/Num/Num.hs
module Num.Num
( Num(..)
, (^)
, subtract
-- ** Read
, readInt
, readDec
, readOct
, readHex
) where
import GHC.Num (Num(..), subtract)
import GHC.Real ((^))
import Numeric
module Num.Num
( Num(..)
, (^)
, subtract
-- ** Read
, readInt
, readDec
, readOct
, readHex
) where
import GHC.Num (Num(..), subtract)
import GHC.Real ((^))
import Numeric