Page 1 of 1

not nil? and not true? value

Posted: Sun Jul 10, 2016 5:35 am
by ssqq
I found '() is not nil or true? value:

Code: Select all

> (nil? '())
nil
> (true? '())
nil
> (empty? '())
true
> (list? '())
true
> (= '() '())
true
for nil and true is only bool value in newLISP, so everything should be judged with nil? or true?