> I noticed with-open kind of stuck out because it doesn't use vectors
> for binding like let, loop, and others.
I had a similar comment about doseq. I don't think the obstacle is the
technical challenge, but rather Rich's decision about whether to do it
or not. This would be a breaking change, o
I noticed with-open kind of stuck out because it doesn't use vectors
for binding like let, loop, and others. it was a quick fix using
destructuring to make the macro use square backets
example:
(with-open [f (new java.io.FileWriter "test")] do-stuff)
but as I was writing an email to this list I r