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
Is = supposed to have higher precedence than cons?
For example, cons 0 1 = 0 seems to get interpreted as cons 0 (1 = 0) and thus returns <nil.nil>. Seems more natural if it got read as (cons 0 1) = 0.
Is
=supposed to have higher precedence thancons?For example,
cons 0 1 = 0seems to get interpreted ascons 0 (1 = 0)and thus returns<nil.nil>. Seems more natural if it got read as(cons 0 1) = 0.