-
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.0.2:
When a
BOOLis converted toSTR,TRUEMUST render asTRUEandFALSEMUST render asFALSE.
And the specification section 9.1.12:
BOOL: PRINT(~STR: arg1, ..., ~STR: argN)= MUST convert each argument toSTR, concatenate the rendered arguments, append a trailing newline, write the result to the console output, record the corresponding I/O event in the execution log, and returnFALSE.
In the implementation, however, PRINT does not render BOOL, falling back to <null> instead.
Prefix REPL. Enter statements, blank line to run buffer.
>>> PRINT(TRUE)
<null>
>>> PRINT(FALSE)
<null>
>>>
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working