newLISP Fan Club

Forum => newLISP in the real world => Topic started by: cameyo on June 16, 2020, 02:10:39 AM

Title: Sorting nil and true
Post by: cameyo on June 16, 2020, 02:10:39 AM
How to sort a list containing nil and true symbols?
(setq a '(nil true b a))
(sort a)
;-> (nil true a b)

Thanks
Title: Re: Sorting nil and true
Post by: cameyo on June 17, 2020, 03:01:56 AM
I have found this method:
(setq lst '(true nil true b a))
(map sym (sort (map string lst)))
;-> (a b nil true true)

cameyo