squint-cljs / squint

Light-weight ClojureScript dialect
https://squint-cljs.github.io/squint
671 stars 44 forks source link

logical not is not working #537

Closed popeguy closed 5 months ago

popeguy commented 5 months ago

version 0.7.110

problem

logical not does not negate

repro from repl or compiler:

(= 1 2) false (not (= 1 2)) false

expected behavior (not (= 1 2))
true