not nil? and not true? value

Started by ssqq, July 09, 2016, 10:35:37 PM

Previous topic - Next topic

ssqq

I found '() is not nil or true? value:



> (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?