Hi all,

I noticed an odd behavior of sort -

(setq L '((2) (1) ))


(println (length L)) # 2 as expected

(sort L)

(println (length L)) # why 1?

(println L) # ((2))

(bye)

I would expect sort not to change the length. Am I missing something here
or is sort broken?
Regards,
Kashyap

Reply via email to