Skip to content

Commit d15e9f0

Browse files
committed
Add compiler dependency
1 parent 1a29633 commit d15e9f0

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
This is a library for working with numbers of arbitrarily finite size.
77

8-
Javascript (and to some extension Purescript) has quite a few drawbacks when it comes to large numbers. For example, Purescript's `Int` primitive [is a member](https://github.com/purescript/purescript-prelude/blob/v0.1.3/src/Prelude.js#L177-L178) of the `Bounded` typeclass, with `top == 2 ^ 31 - 1` and `bottom == - (2 ^ 32)`.
8+
JavaScript (and to some extension PureScript) has quite a few drawbacks when it comes to large numbers. For example, PureScript's `Int` primitive [is a member](https://github.com/purescript/purescript-prelude/blob/v0.1.3/src/Prelude.js#L177-L178) of the `Bounded` typeclass, with `top == 2 ^ 31 - 1` and `bottom == - (2 ^ 32)`.
99

10-
The Purescript `Number` primitive is not `Bounded` in the same way; however, there are problems with manipulating large-enough `Number`s:
10+
The PureScript `Number` primitive is not `Bounded` in the same way; however, there are problems with manipulating large-enough `Number`s:
1111

1212
```
1313
> import Prelude

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
},
88
"devDependencies": {
99
"pulp": "^9.0.1",
10-
"purescript-psa": "^0.3.8",
11-
"rimraf": "^2.5.0"
10+
"purescript-psa": "^0.3.9",
11+
"purescript": "^0.10.1",
12+
"rimraf": "^2.5.4"
1213
}
1314
}

0 commit comments

Comments
 (0)