You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per CLHS 2.3.1.1.1, any token that contains an escape character is not a potential number and should be interpreted as a symbol. Among the listed examples, 5|| is specifically said to be interpreted as a symbol. However, JSCL reads it as a number:
CL-USER> (type-of'5||)
; => INTEGER
The text was updated successfully, but these errors were encountered:
As per CLHS 2.3.1.1.1, any token that contains an escape character is not a potential number and should be interpreted as a symbol. Among the listed examples,
5||
is specifically said to be interpreted as a symbol. However, JSCL reads it as a number:The text was updated successfully, but these errors were encountered: