newLISP Fan Club

Forum => Anything else we might add? => Topic started by: ssqq on July 09, 2016, 10:35:37 PM

Title: not nil? and not true? value
Post by: ssqq on July 09, 2016, 10:35:37 PM
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?