Skip to content

Commit 8377cba

Browse files
committed
Open-import Prelude
1 parent 6504560 commit 8377cba

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/Data/Rational.purs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@ module Data.Rational
66
, fromInt
77
) where
88

9-
import Prelude (class Num, class DivisionRing, class ModuloSemiring, class
10-
Ring, class Semiring, class Ord, class Eq, class Show,
11-
Ordering(GT, EQ, LT), negate, (<), mod, otherwise, (==), (*),
12-
($), (/), div, zero, sub, add, mul, one, (&&), show, (++))
9+
import Prelude
1310
import Data.Int as Int
1411
import Data.Ratio (Ratio(Ratio))
1512

@@ -73,4 +70,3 @@ signum x' | x' < 0 = -1
7370
signum _ = 1
7471

7572
foreign import abs :: Int -> Int
76-

0 commit comments

Comments
 (0)