I'd love to have the freedom to use various languages for the problems they work best for but I'm not sure how this can be accomplished today.

I have had a fair amount of success using web services as the language abstraction layer and that works great... but it's slower than molasses even using localhost.

Steve Yegge has talked about this very issue and how it is helping to drive further interest of VM's. On the .NET side, the last I heard there wasn't a not ugly way of communicating between the DLR and CLR. Has that changed? How are things on the JVM front? What about allowing VM's to interoperate?

BTW, I don't have any real reason to care except that I'm a nerd with nothing better to think about. :)

link|improve this question

1  
Voted up only for your admission to being a geek. – UnkwnTech Sep 21 '08 at 6:02
feedback

2 Answers

up vote 2 down vote accepted

Communication between the CLR and DLR is actually fairly easy. DLR code can call CLR code transparently, so that's a nonissue. To call DLR code from the CLR, make an interface in C#/Nemerle/whatever and then implement that from IronPython or whatever your DLR language of choice is. Then you can use that interface to call into the DLR code no problem. It's not optimal, but it works perfectly.

I'm currently working on doing compilation of static languages (primarily Nemerle and C#) to the DLR, and that should bridge the gap completely. We'll see.

Edit: Btw, it's already very possible -- easy, in fact -- to mix CLR languages. I use C# and Nemerle regularly and I've never had a problem with anything at all.

link|improve this answer
feedback

JVM side is looking pretty promising nowadays for polyglot programming.

  1. You've got a set of very interesting langauges in addition to Java - Clojure, Scala, Groovy and JRuby are probably the main ones but there are lots more JVM langauges. All of these languages are good at interoperating relatively seamlessy

  2. Tool support is good. In addition to IDE support with e.g. Eclipse or Netbeans, most of the JVM langauges play quite nicely with the wider JVM tool ecosystem, e.g. you can use Maven for dependency and build management.

  3. The development of the JVM itself is being strongly influenced by the requirements of langauges other than Java, leadingt to features such as the new invokedynamic bytecode. It has been a hot topic at the JVM language summit.

  4. The Java ecosystem is increasingly open with the advent of the OpenJDK which makes it a good environment for experimentation for language implementors and new language afficionados alike.

Personally, I'm doing polyglot programming at the moment with Java and Clojure in the same project, and finding it a very good combination. Generally I use Java for the "low level" stuff and performance optimisations, while using Clojure as the language for developing higher level abstractions and gluing everything together.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.