|
|
|
|
|
by crazydiamond
5005 days ago
|
|
Thanks, I have a Java background, so that should help. However, from what I recall many of the articles on learning Clojure recommended learning Lisp/Scheme first. Do you agree? Also, they strongly recommended learning Emacs (I have been a Vim'mer for about 20 years, and I like keeping my Vim simple with only a few plugins). Does one just jump into Clojure or how do you recommend it? If lisp/scheme first, then which one? Thx. |
|
As far as I know, there are no comparable books for Clojure. However, once I became familiar with CL, it was not at all difficult to pick up Clojure. Sure, Clojure has some new ideas, especially when it comes to mutability and concurrency. But in terms of the basic language, it's very similar to CL and in many ways it's easier to work with.
As for emacs - I also strongly recommend using it. It has great support for lisp and really makes development a joy. Emacs itself is written in a lisp variant, elisp. If you do decide to go with emacs, use this: https://github.com/technomancy/emacs-starter-kit . It's a great set of packages pulled together by someone who, it turns out, is very big in the Clojure community. I'm not really sure what the best resource is for learning emacs these days.
I've really enjoyed the way I've learned lisp, and I feel comfortable recommending that you start with Land of Lisp and emacs. I hope this helps!