Closed minikomi closed 7 years ago
https://github.com/swannodette/lt-cljs-tutorial/blob/master/lt-cljs-tutorial.cljs#L490-L493
Maybe add something which evaluates to true for identical? here eg.
true
identical?
(def my-vec [1 2 3]) (def your-vec [1 2 3]) (def also-my-vec my-vec) (identical? my-vec your-vec) (identical? my-vec also-my-vec)
https://github.com/swannodette/lt-cljs-tutorial/blob/master/lt-cljs-tutorial.cljs#L490-L493
Maybe add something which evaluates to
true
foridentical?
here eg.