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
A string starting with a number followed by a character will be parsed as a number and a symbol.
Say, (let ((x 1)) (+ 2x)) results in 3. Instead, it should probably be parsed as a symbol, say, 2x should
be parsed as |2X| as in Common Lisp
The text was updated successfully, but these errors were encountered:
A string starting with a number followed by a character will be parsed as a number and a symbol.
Say,
(let ((x 1)) (+ 2x))
results in3
. Instead, it should probably be parsed as a symbol, say,2x
shouldbe parsed as
|2X|
as in Common LispThe text was updated successfully, but these errors were encountered: