-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
According to the specification section 4.3.2:
When numeric values are converted to
STR, they MUST render in their own base and MUST include the base prefix.INF,-INF, andNaNrender without a base prefix.
In the implementation, however, when an INF or an -INF is converted to STR, it renders as NaN.
Prefix REPL. Enter statements, blank line to run buffer.
>>> PRINT(INF)
NaN
>>> PRINT(-INF)
NaN
>>> PRINT(STR(INF))
NaN
>>> PRINT(STR(-INF))
NaN
>>>
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working