Re: What is the best way to parasitically invade a java project with clojure goodness?

2010-08-24 Thread Jeff Brown
On Mon, Aug 23, 2010 at 8:41 PM, Seth seth.schroe...@gmail.com wrote: Going from Java to Clojure isn't quite as easy as going the other way, as @brweber2 demonstrated at the local Clojure meetup. Here's the code he used in the presentation, might send him a direct message on Twitter for more

What is the best way to parasitically invade a java project with clojure goodness?

2010-08-23 Thread Robert McIntyre
Let's say my group has a fairly large java project on which ~20 people are working. We want to start using clojure with our existing code. Specifically, we want to have clojure classes that provide functions for our java classes, and vice versa. Two questions on the best way to do this: (:1

Re: What is the best way to parasitically invade a java project with clojure goodness?

2010-08-23 Thread Allen Johnson
(:1 Should the clojure source files intermingle with the java source files, each according to it's relavance to the problem, or should there be a top level separation between them?) IMO, they should be separated. Since the project was started with Java I'd continue treating it as the

Re: What is the best way to parasitically invade a java project with clojure goodness?

2010-08-23 Thread Allen Johnson
Oops, s/create an instead/create an instance/ :) On Mon, Aug 23, 2010 at 10:03 AM, Allen Johnson akjohnso...@gmail.com wrote: (:1 Should the clojure source files intermingle with the java source files, each according to it's relavance to the problem, or should there be a top level separation

Re: What is the best way to parasitically invade a java project with clojure goodness?

2010-08-23 Thread Seth
Going from Java to Clojure isn't quite as easy as going the other way, as @brweber2 demonstrated at the local Clojure meetup. Here's the code he used in the presentation, might send him a direct message on Twitter for more info: http://github.com/brweber2/javacallclj On Aug 22, 7:48 pm, Robert