newLISP Fan Club

Forum => newLISP in the real world => Topic started by: cameyo on June 04, 2019, 05:57:37 AM

Title: Equal and Not Equal
Post by: cameyo on June 04, 2019, 05:57:37 AM
(setq lst '((2 4) (3 1)))

(= (lst 0 0) (lst 0 0))
;-> true

(!= (lst 0 0) (lst 0 0))
;-> (nil nil)

(= (lst 0 0) (lst 1 0))
;-> (nil nil)

(= (first (first lst)) (last (first lst)))
;-> (nil nil)

I was expecting nil, instead i got (nil nil).

Where am I doing wrong?

Thanks.
Title: Re: Equal and Not Equal
Post by: cameyo on June 04, 2019, 06:18:45 AM
After starting a new newLISP REPL...all works ok :-)

It is not the first time that I get strange results after using the debugger.

I'd like to have a command/method to test the integrity/correctness of current REPL session.

cameyo