Tagged Questions
Clojure is a modern Lisp dialect. Features include: an emphasis on functional programming (lazy/impure), running on the JVM with transparent access to all Java libraries, an interactive REPL development environment, dynamic runtime polymorphism, Lisp-style macro meta-programming and concurrent programming capabilities supported by software transactional memory. Versions of Clojure are also available for the CLR and Javascript.
178
votes
5answers
37k 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.
145
votes
20answers
28k views
Which tutorial on Clojure is best? [closed]
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 recommend?
Answer:
I ...
114
votes
10answers
15k views
Modern alternatives to Java [closed]
I have been a Java developer for 14 years and have written an enterprise-level (~500 kloc) Swing application that uses most of the standard library APIs. Recently, I have become disappointed with the ...
89
votes
11answers
9k views
Is there a software-engineering methodology for functional programming?
Software Engineering as it is taught today is entirely focused on object-oriented programming and the 'natural' object-oriented view of the world. There is a detailed methodology that describes how to ...
89
votes
6answers
22k views
How do you make a web application in Clojure?
I suppose this is a strange question to the huge majority of programmers that work daily with Java. I don't. I know Java-the-language, because I worked on Java projects, but not Java-the-world. I ...
72
votes
6answers
10k views
Comparing Clojure books [closed]
Currently [April 5 2010] there is (afaik) one completed Clojure book available:
Programming Clojure by Stuart Halloway.
Two are being written and partially available at Manning:
The Joy of ...
62
votes
5answers
13k views
Please explain some of Paul Graham's points on Lisp
I need some help understanding some of the points from Paul Graham's article http://www.paulgraham.com/diff.html
A new concept of variables. In Lisp, all variables are effectively pointers. Values ...
56
votes
3answers
9k views
A gentle tutorial to Emacs/Swank/Paredit for Clojure
I am moving to Emacs to work on Clojure/Lisp.
What is all the information I need to setup on Emacs to be able to do the following?
automatic matching/generation of corresponding closing brackets
...
54
votes
13answers
10k views
What is the best way to do GUIs in Clojure?
What is the best way to do GUIs in Clojure?
Is there an example of some functional Swing or SWT wrapper?
Or some integration with JavaFX declarative GUI description which could be easily wrapped to ...
54
votes
30answers
10k 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 used serious projects, ...
52
votes
9answers
3k views
Why exactly is eval evil?
I know that Lisp and Scheme programmers usually say that eval should be avoided unless strictly necessary. I’ve seen the same recommendation for several programming languages, but I’ve not yet seen a ...
51
votes
4answers
4k views
Building a Clojure app with a command-line interface?
I just started w/ Clojure (coming from Ruby) and I would like to build an small app with a command-line interface. How do I handle input/output to a CL?
I noticed that there is a ...
44
votes
12answers
10k views
Medium-size Clojure sample application?
Is there a medium-sized Clojure sample application that could be used as a "best-practices" example, and a good way to see what such an application would look like in terms of code and code ...
43
votes
3answers
4k views
What's the “big idea” behind compojure routes?
I'm new to Clojure and have been using Compojure to write a basic web application. I'm hitting a wall with Compojure's defroutes syntax, though, and I think I need to understand both the "how" and ...
43
votes
6answers
6k views
Debugging in Clojure?
What are best ways to Debug Clojure code, while using the repl in Clojure-box ?
42
votes
5answers
4k views
Calling clojure from java
Most of the top google hits for "calling clojure from java" are outdated and reccomend using clojure.lang.RT to compile the source code. Could you help with a clear explanation of how to call Clojure ...
42
votes
7answers
15k views
On Performance and Java Interoperability: Clojure vs. Scala
I have already read various accounts of Clojure vs. Scala and while I realize that both have their place. There are a few considerations that I haven't acquired a complete explanation on when it ...
41
votes
8answers
2k views
Any Real-World Experience Using Software Transactional Memory?
It seems that there has been a recent rising interest in STM (software transactional memory) frameworks and language extensions. Clojure in particular has an excellent implementation which uses MVCC ...
40
votes
4answers
4k views
39
votes
8answers
3k views
Common programming mistakes for Clojure developers to avoid [closed]
Following a masterful trend:
Common programming mistakes for Scala developers to avoid?
Common programming mistakes for Java developers to avoid?
Common programming mistakes for JavaScript ...
38
votes
10answers
9k views
What is your opinion on Clojure?
What do you guys think about Clojure? I'm thinking of learning it next, currently using Erlang and in general happy with it except the records fiasco...
Is Clojure as powerful as LISP?
thanks
37
votes
10answers
5k views
Yet another Haskell vs. Scala question
I've been using Haskell for several months, and I love it—it's gradually become my tool of choice for everything from one-off file renaming scripts to larger XML processing programs. I'm definitely ...
36
votes
14answers
3k 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 out functional ...
36
votes
6answers
7k views
Generating permutations lazily
I'm looking for an algorithm to generate permutations of a set in such a way that I could make a lazy list of them in Clojure. i.e. I'd like to iterate over a list of permutations where each ...
36
votes
14answers
18k views
Clojure editor/IDE recommendations on Mac OS X
I am starting to learn the Clojure programming language. Are there any recommendations for Clojure editors/IDEs on Mac OS X?
Update 2009-09-23: The Clojure space has changed tremendously since I ...
35
votes
11answers
2k views
Editing programs “while they are running”? Why?
I've been getting more into Lisp and Lispy languages lately, and I'm finding them quite powerful.
One thing I've been reading all over the net is that a benefit of writing in Lisp, Clojure, etc, is ...
34
votes
6answers
2k views
Running Clojure web applications in production
I'm deeply in love with Clojure, and Compojure seems like a neat web framework.
But it all fell apart when I wanted to deploy my application on a regular application server like Tomcat as a WAR. I ...
32
votes
8answers
3k views
Why Clojure over other JVM Lisps: Kawa, Armed Bear or SISC?
The JVM already had three Lisps before Clojure arrived on the scene: Kawa, Armed Bear and SISC.
What gap does Clojure fill that was left by those Lisps?
32
votes
3answers
5k views
use vs. require in Clojure?
Can anyone explain the difference between "use" and "require", both when used directly and as :use and :require in the ns macro?
31
votes
3answers
1k views
Java to clojure rewrite
I have just been asked by my company to rewrite a largish (50,000 single lines of code) Java application (a web app using JSP and servlets) in Clojure. Has anyone else got tips as to what I should ...
31
votes
18answers
4k views
Which Lisp should I learn?
To piggyback on http://stackoverflow.com/questions/59428/learning-lisp-scheme-interpreter,
O gods of StackOverflow:
Which Lisp (dialect) should I learn, and why?
The fragmentation between CL and ...
30
votes
6answers
11k views
Clojure vs Haskell for web applications?
I want to learn a functional language that will be good for building web applications in the future. I am choosing between Clojure and Haskell. Which one is a better choice for my purpose?
29
votes
3answers
2k views
Clojure on the CLR
I'm interested in investigating Clojure on the CLR. I see that there is a port--but I'm always a bit leery of these second-class citizens (i.e. they don't have the stability or functionality of the ...
29
votes
3answers
3k views
How do I get “rainbow parentheses” in emacs?
Hello StackOverflowers,
I would like rainbow parens for editing Clojure in Emacs and since VI does this I assume that in Emacs it should be something like M-x butterfly or something :)
29
votes
1answer
7k views
Clojure XML Parsing
I can not find any info on how to parse xml documents and access elements.
I have found two ways to parse the xml document
(clojure.zip/xml-zip (clojure.xml/parse file))
and
(parse-seq file)
...
28
votes
3answers
2k 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 alternative is this:
...
27
votes
4answers
4k views
Clojure on Android
Is it possible to program Android apps in Clojure?
Can anybody suggest a good tutorial or book, if it is possible?
27
votes
5answers
2k views
Hidden features of Clojure
Which lesser-known but useful features of Clojure do you find yourselves using? Feel free to share little tricks and idioms, but try to restrict yourselves to Core and Contrib.
I found some really ...
26
votes
9answers
6k views
Matrix Multiplication in Clojure vs Numpy
I'm working on an application in Clojure that needs to multiply large matrices and am running into some large performance issues compared to an identical Numpy version. Numpy seems to be able to ...
26
votes
8answers
1k views
Clojure for a lisp illiterate
I am a lifelong object-oriented programmer. My job is primarily java development, but I have experience in a number of languages. Ruby gave me my first real taste of functional programming. I loved ...
26
votes
10answers
2k views
Why are so many new languages written for the Java VM?
There are more and more programming languages (Scala, Clojure,...) coming out that are made for the Java VM and are therefore compatible with the Java Byte-Code.
I'm beginning to ask myself: Why the ...
26
votes
8answers
9k views
26
votes
4answers
3k 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 examples of programs ...
25
votes
9answers
1k views
Functional equivalent of decorator pattern?
What is the functional programming equivalent of the decorator design pattern?
For example, how would you write this particular example in a functional style?
25
votes
3answers
800 views
One REPL to bind them all?
I'd like to know if there is a REPL which is not language-specific. I spend a lot of time dipping in and out of REPLs (mainly for Clojure, Scala and Haskell), and the bundled ones all frustrate me to ...
25
votes
4answers
2k views
Clojure - named arguments
Does Clojure have named arguments? If so, can you please provide a small example of it?
25
votes
5answers
797 views
Homoiconicity, How does it work?
Can someone suggest articles that explain the concept of Homoiconicity, especially using Clojure. Why is it that Clojure is homoiconic but its hard to do that in other languages such as Java ?
25
votes
5answers
4k views
Are there any good Clojure benchmarks?
Edit: The Clojure benchmarks are up on the Benchmarks Game.
I have made this question community wiki and invite others to keep it updated.
Is anyone aware of benchmarks of Clojure's performance? ...
24
votes
1answer
1k views
Splitting a Clojure namespace over multiple files
Is it possible to split a Clojure namespace over multiple source files when doing ahead-of-time compilation with :gen-class? How do (:main true) and (defn- ...) come into play?
24
votes
2answers
624 views
Debugging Clojure with IntelliJ Idea 10 and La Closure Plugin version 0.3.15
I'm using IntelliJ Idea 10 with the La Closure plugin version 0.3.15
and Java 6 I've added Clojure 1.2 to a project.
The breakpoints I put on Java code get hit, but the ones I put on
Clojure do ...