3
votes
10answers
139 views
In Which Cases Is Better To Use Clojure?
I develop in Lisp and in Scheme, but I was reading about Clojure and then I want to know, in which cases is better to use it than using Lisp or Scheme? Thanks
3
votes
3answers
167 views
How do I mix JVM based languages in a single Netbeans project?
For example, is it possible to have Scala, Java, and Clojure source all compile/build together properly inside the same project? Or, do I have to do them as separate project libra …
1
vote
4answers
102 views
Representing A Tree in Clojure
What would be a idiomatic way to represent a tree in Clojure?
A
/ \
B C
/\ \
D E F
Such as the one above, performance is not important and tree's wont gr …
5
votes
8answers
714 views
macro support in F#
After reading Practical Common Lisp I finally understood what the big deal about macros was, and I have been looking for a language for the .NET platform that supports this. There …
6
votes
7answers
632 views
What factors could determine whether Clojure, Scala or Haskell will gain traction?
Given that it's impossible to see into the future, what factors related to Clojure, Scala or Haskell are likely to determine whether one of them catches on?
Are there cultural or …
2
votes
3answers
64 views
How to improve Clojures error messages
I've been playing a bit with Clojure and so far is fairly impressed, but one thing that I keep running into is wierd error messages from Clojure. This comes in two forms: Java erro …
1
vote
7answers
339 views
CMS in functional programming language
Are there any CMS'es, written in functonal programming languages (lisp, haskell, f#/nemerle, scala, erlang, clojure, smalltalk) already?
5
votes
4answers
117 views
Does anyone know of a good reference for DSL design?
I've been looking into designing some Domain Specific Languages which I will probably implement in Clojure, but I really don't have any idea of what's involved.
The languages I ha …
3
votes
1answer
55 views
How can I configure my project.clj so that Leiningen finds my sources under a non-standard directory structure?
It seems Leiningen's compile task looks for source packages to start immediately under the /src directory. I use both Java and Clojure in my project, so my /src directory looks lik …
3
votes
4answers
115 views
How does one start a thread in Clojure?
I've read a lot about how great Clojure is when it comes to concurrency, but none of the tutorials I've read actually explain how to create a thread. Do you just do (.start (Thread …
13
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 …
1
vote
2answers
113 views
Clojure: Unable to resolve symbol. I’m stumped.
When I paste this code into a REPL, it works fine:
(use 'clojure.contrib.seq-utils)
(defn- random-letter [] (char (+ (rand-int 26) 97)))
(defn- random-digit [] (rand-int 10))
(def …
2
votes
1answer
49 views
Clojure equivalent of Erlang’s DETS / Persistent-Maps
I'm looking for the equivalent of Erlangs DETS for a persistent key/value store,
except with out DETS 2G table size limit.
5
votes
2answers
97 views
Scoping rules in Clojure
Even though I have used Clojure, I hadn't looked at the scoping rules in detail. I am getting more confused as I read the documentations.
I made a small test to try out the scoping …
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 …
