This commit is contained in:
Mattia Giambirtone 2022-06-22 11:44:48 +02:00
commit 180a7ad956
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ NimKalc treats all numerical values as `float` to simplify the implementation of
from floating point numbers the `AstNode` object has a `kind` discriminant which will be equal to `NodeKind.Integer` for ints
and `NodeKind.Float` for decimals. It is advised that you take this into account when using the library, since integers might
start losing precision when converted from their float counterpart due to the difference of the two types. Everything should
be fine as long as the value doesn't exceed 2 ^ 53, though
be fine as long as the value doesn't exceed 2 ^ 53 though.
__Note__: The string representation of integer nodes won't show the decimal part for clarity