Fork me on GitHub
#cljs-dev
<
2017-01-14
>
mfikes16:01:21

@rauh FWIW, the reader used for bootstrapped ClojureScript rejects the set:

cljs.user=> #{"-" \-}
Set literal contains duplicate key: -

Yehonathan Sharvit16:01:29

It makes sense because (= "-" \-) is true

rauh16:01:35

@mfikes Yeah I guess the problem is that JS has no real "chars" but clojure does

Yehonathan Sharvit16:01:44

does it work on regular cljs?