basilisp icon indicating copy to clipboard operation
basilisp copied to clipboard

reduce-kv different from clojure

Open FalseProtagonist opened this issue 6 months ago • 1 comments

This fails in :lsp, works in :clj:

(reduce-kv (fn [acc i v] (-> acc (update :ks conj i) (update :vs conj v))) {:ks [] :vs []} [:a :b :c])

FalseProtagonist avatar Jul 30 '24 13:07 FalseProtagonist