not nil? and not true? value

For the Compleat Fan
Locked
ssqq
Posts: 88
Joined: Sun May 04, 2014 12:49 pm

not nil? and not true? value

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

Locked