HWhile icon indicating copy to clipboard operation
HWhile copied to clipboard

precedence of `=` and `cons`

Open unspam opened this issue 6 years ago • 0 comments

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.

unspam avatar Apr 20 '18 04:04 unspam