HWhile
HWhile copied to clipboard
precedence of `=` and `cons`
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
.