Top "Clojure" questions

Clojure is a modern Lisp dialect for the Java Virtual Machine (with versions for the CLR and JavaScript).

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 …

scala groovy clojure language-comparisons
A regex to match a substring that isn't followed by a certain other substring

I need a regex that will match blahfooblah but not blahfoobarblah I want it to match only foo and everything …

java regex clojure
How to bundle a native library and a JNI library inside a JAR?

The library in question is Tokyo Cabinet. I want is to have the native library, JNI library, and all Java …

java jar clojure java-native-interface tokyo-cabinet
In Clojure how can I convert a String to a number?

I have various strings, some like "45", some like "45px". How how I convert both of these to the number 45?

clojure
How do you change the CLASSPATH within Java?

How do you change the CLASSPATH of a Java process from within the Java process? Before you ask me "Why …

java clojure classpath
In Clojure 1.3, How to read and write a file

I'd like to know the "recommended" way of reading and writing a file in clojure 1.3 . How to read the whole …

file clojure io
Test whether a list contains a specific value in Clojure

What is the best way to test whether a list contains a given value in Clojure? In particular, the behaviour …

data-structures clojure
How to reload a clojure file in REPL

What is the preferred way of reloading functions defined in a Clojure file without having to restart the REPL. Right …

clojure reload read-eval-print-loop leiningen
Creating a UUID from a string with no dashes

How would I create a java.util.UUID from a string with no dashes? "5231b533ba17478798a3f2df37de2…

java string clojure uuid
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. …

clojure