Hi,
I have been looking into Clojure and I am looking for active projects
using Clojure so that I can look at production code.
Thanks,
Kevin Albrecht
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
On Sep 27, 7:03 pm, "Stephen C. Gilardi" <[EMAIL PROTECTED]> wrote:
> Clojure appears to have been well received at the JVM Languages Summit.
>
> Congratulations and well done, Rich!
>
Thanks. The summit was really fantastic - so many interesting and
smart people and lots of great presentations
On Sep 22, 2008, at 2:27 AM, Stephen C. Gilardi wrote:
> I've uploaded
> http://groups.google.com/group/clojure/web/binding-destructure.patch
> .
I updated the patch to improve readability and uploaded it to:
http://clojure.googlegroups.com/web/bind-destructuring.patch
--Steve
--~-
On Sep 28, 2008, at 3:56 PM, Colin Walters wrote:
> On Sep 28, 1:28 pm, "Stephen C. Gilardi" <[EMAIL PROTECTED]> wrote:
>
>> final static public Var ERR =
>> Var.intern(CLOJURE_NS, Symbol.create("*err*"),
>>new PrintWriter(new
>> OutputStreamWriter(Sy
Presumably you want to use whatever encoding OUT (or whatever it's
called) uses.
Bill
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To post to this group, send email to clojure@googlegroups.com
To
On Sep 28, 1:28 pm, "Stephen C. Gilardi" <[EMAIL PROTECTED]> wrote:
> final static public Var ERR =
> Var.intern(CLOJURE_NS, Symbol.create("*err*"),
> new PrintWriter(new OutputStreamWriter(System.err,
> UTF8),
> true));
Is it right to put UTF8 there
For a socket repl, I'd like to have error output sent across the wire
as well as normal output. Clojure currently provides vars (*in* and
*out*) that allow a thread to redirect input and output. I suggest a
new var *err* which allows redirecting error output as well.
I can mostly do this wit