Fork me on GitHub
#cljs-dev
<
2022-08-01
>
borkdude19:08:37

I believe I may have found a small bug related to varargs:

cljs.user=> (defn foo ([x] x) ([x y & zs] zs))
#'cljs.user/foo
cljs.user=> (foo 1 2)
()
This should return nil. Let me know if you want an issue+patch, I'd be happy to provide those.

😮 1