Tims Gardner
Tims Gardner
Thanks for your response @Malabarba , I'm having some trouble finding that issue (maybe related to #460?), here or on the cider repo, but yeah it sounds like it's the...
On the language level, the bug seems to be that `(binding [*print-dup* true] (pr-str (into-array Object (list 1 2 3))))` emits anything at all rather than an error. Alternatively, the...
Weird, I'll take a look
@nasser what's the what on this?
One (possibly paranoid) worry is that this might break something on the tooling side, or down the line on the compiler level for ClojureJVM/ClojureScript. I remember hearing the reader dispatch...
https://docs.unity3d.com/Manual/CommandLineArguments.html
We already have clojure.test, I'm not sure we need a big framework aside from that. What would be nice is some tools for running clojure.test, and maybe a bit more...
> The right thing to do seems to be to merge it into the official repo, but then we're waiting on merger in order to use it in our package...
We have a decent first cut of this in `arcadia.internal.test`, adequate for internal purposes. Asynchronous, data-oriented, works nicely with the scene graph. Next step is to promote it to a...
Getting the same thing with `deftype`: ```clojure (deftype ResultsWrapper [results] Object (ToString [this] "results-wrapper") ITester (get-ref [this] results)) ``` becomes ```C# using [email protected]; using clojure.lang; using System; namespace [email protected] {...