Elsa icon indicating copy to clipboard operation
Elsa copied to clipboard

Add a rule for comparing strings with eq

Open Fuco1 opened this issue 7 years ago • 0 comments

(let ((a "a"))
  (eq a a)) ;; => t

(let ((a "a")
      (b "a"))
  (eq a b)) ;; => nil

I can not imagine when the first is much useful... Probably this is an error. It should be a warning but configurable.

Fuco1 avatar Jul 31 '18 17:07 Fuco1