28
votes
25answers
3k views
Lisp in the real world
I have experimented with Lisp (actually Scheme) and found it to be a very beautiful language that I am interested in learning more about. However, it appears that Lisp is never us …
27
votes
12answers
4k views
Which tutorial on Clojure is best?
I'm interested in learning Clojure. The Getting Started page on Clojure.net is pretty minimal. Is there a good language introduction or tutorial out there? Which would you recom …
20
votes
8answers
662 views
Calculating the Moving Average of a List
This weekend I decided to try my hand at some Scala and Clojure. I'm proficient with object oriented programming, and so Scala was easy to pick up as a language, but wanted to try …
20
votes
14answers
2k views
Suitable functional language for scientific/statistical computing?
I use mostly R and C for statistics-related tasks. Recently
I have been dealing with large datasets, typically 1e7-1e8
observations, and 100 features. They seem too big for R too
h …
17
votes
4answers
2k views
How can I transition from Java to Clojure?
After discovering Clojure I have spent the last few days immersed in it.
What project types lend themselves to Java over Clojure, vice versa, and in combination?
What are examp …
16
votes
14answers
1k views
What is the best functional language for scientific programming
I am coming from C/C++, Python background and I am looking to learn a functional language that (Hopefully) can do
Serious Matrix Computation
expressive
real world modelling
datab …
15
votes
8answers
1k views
What’s the most useful thing you’ve done in less than 50 lines of Clojure?
Clojure seems likes it might have a good shot at being a popular Lisp. I was wondering how many people have actually adopted it to solve some of the small, yet real, problems that …
15
votes
18answers
1k views
How do I get my brain moving in “lisp mode?”
My professor told us that we could choose a programming language for our next programming assignment. I've been meaning to try out a functional language, so I figured I'd try out …
15
votes
7answers
2k views
Which one is more likely to succeed: clojure or arc?
Which one of the following new lisp implementations is more likely to gain the momentum and more mainstream acceptance, arc by Paul Graham or clojure by Rich hickey?
They both lau …
14
votes
4answers
2k views
Scala vs. Groovy vs. Clojure
Can someone please explain the major differences between Scala, Groovy and Clojure. I know each of these compiles to run on the JVM but I'd like a simple comparison between them.
14
votes
6answers
571 views
Lisp Code Formatting
One of the people who took the time to comment on my other question about Clojure/LISP syntax pointed out that I had not written my sample code in the standard LISP way. So he was …
14
votes
13answers
4k views
Clojure editor/IDE recommendations on OS X
I am starting to learn the Clojure programming language. Are there any recommendations for Clojure editors/IDEs on OS X?
Update 2009-9-23: The clojure space has changed tremendous …
13
votes
16answers
1k views
Which language would you use for the self-study of SICP?
I've caught the bug to learn functional programming for real. So my
next self-study project is to work through the Structure and
Interpretation of Computer Programs. Unfortunately, …
13
votes
7answers
2k views
What is the best way to do Gui in Clojure?
What is the best way to do Gui in Clojure?
Is there an example of some functional swing or SWT wrapper?
Or some integration with javafx declarative gui description which could be …
12
votes
2answers
471 views
Clojure keyword arguments
In Common Lisp you can do this:
(defun foo (bar &key baz quux)
(list bar baz quux))
(foo 1 :quux 3 :baz 2) ; => (1 2 3)
Clojure doesn't have keyword arguments. One al …
