An open API service indexing awesome lists of open source software.

https://github.com/iolanguage/rational


https://github.com/iolanguage/rational

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

# Rational
Rational number.

Example use:
```Io
r1 := Rational with(1, 2) /* 1/2 */
r1 + r1 == Rational with(1, 1) /* true */
Rational with(1, 1) == Rational with(4, 4) /* true */

r2 := Rational with(1, 4)
r1 + r2 == 0.75 asRational
```

# Installation
```
eerie install https://github.com/IoLanguage/Rational.git
```