Code Select Expand(setq a '(nil true b a))(sort a);-> (nil true a b)
Code Select Expand(setq lst '(true nil true b a))(map sym (sort (map string lst)));-> (a b nil true true)