erg-lang / erg

A statically typed language compatible with Python
http://erg-lang.org
Apache License 2.0
2.7k stars 55 forks source link

Add Ratio type #423

Open GreasySlug opened 1 year ago

GreasySlug commented 1 year ago

Fixes #218.

Changes proposed in this PR:

Removed

These contents are excluded

Currently known bugs

mtshiba commented 3 months ago

The display of rational numbers is not consistent. It would be better to display them in the form numerator/denominator (e.g. 3/10).

>>> 3/10
Ratio(3, 10)
>>> 0.3
(3, 10)
>>> 2.3 % 2
Fraction(3, 10)