summaryrefslogtreecommitdiff
path: root/libraries/haskell98/Ratio.hs
blob: a7ae38417979237ed02a799f92da3736e0c23336 (plain)
1
2
3
4
5
6
7
8
9
10
{-# LANGUAGE CPP #-}
#if __GLASGOW_HASKELL__ >= 701
{-# LANGUAGE Safe #-}
#endif

module Ratio (
        Ratio, Rational, (%), numerator, denominator, approxRational
    ) where

import Data.Ratio