How practical is it to port a Common Lisp application to Clojure? To be more specific, what features exist in Common Lisp that do not exist in Clojure, and would have to be re-written?
|
There's a list on clojure.org of differences between Clojure and other Lisps. Some other things I've noticed using Clojure:
Depending on the app and how it's written, it may be practical and straightforward to port from CL to Clojure, or it may be more practical to rewrite it from the ground up in a more functional, thread-safe way to fit better with Clojure style. |
|||||||||||||||||
|
|
I don't have a specific answer, but I'd recommend these resources:
|
|||||
|
|
There are a number of accounts of transitioning from CL to Clojure (blog, another blog, Thread on HN). The biggest problem a lot of Common Lispers have with Clojure when they first check it out is its lack of Tail Call Optimization, which isn't possible on the the JVM. |
|||||||||||||||||
|
|
For idiomatic CL code it's a rewrite.
Even porting the necessary infrastructure (CLOS, Error Handling, Streams) to Clojure makes little sense, since Clojure is really a different language with a different programming style. If one does not want to rewrite the code, there is for example ABCL, which is a Common Lisp for the JVM. |
|||
|
|