Fork me on GitHub
#clojure-europe
<
2023-01-06
>
genRaiy09:01:47

Good morning. Brooding.

❤️ 8
jasonbell09:01:15

Beautifully shot @U04V5V0V4

2
grav09:01:17

Morning from rainy rainy :flag-dk:

RAMart10:01:26

👋

👋 4
mccraigmccraig11:01:23

well this sure tripped me up today:

cljs.user> [(= ::none ::none) (identical? ::none ::none)]
;; => [true false]

mccraigmccraig11:01:22

same code on clj, gives ofc:

user=> [(= ::none ::none) (identical? ::none ::none)]
[true true]

mccraigmccraig11:01:52

i was under the (seemingly mistaken) impression that there was only ever a single keyword instance for a given ns/name ... which seems to hold on clj but not on cljs

jasonbell12:01:47

You already beat me to it, I got [true true] with clj.

borkdude12:01:07

keywords aren't "identical" in CLJS

borkdude12:01:20

you should use keyword-identical? for this

❤️ 2