I want to split a big clojure-script into smaller ones. And it looks like this. One: (ns one (:use [two :only (show)]))
What\'s meaning difference between var and quote in Clojure? For example, (var a) and (quote a). The official site has the below documents, but what\'s the difference of var object and the value for
How mature is clojure-clr? Does this support all the functions that clojure/jvm provides? Does it run on Mono without any problem?
I have the following code to try to remove non-numbers fromastring: (apply str (flatten (map (fn[x] (if (number? x) x))
Is there a reader macro or core function in Clojure that is similar to recur but possible with non-tail position?
For example, given a Java class like: public class Foo { public String bar(String x) { return \"string \" + x;
I justed started experimenting with compojure and I\'d like to create HTML output with the syntax I\'ve found in several compojure examples:
I\'m having problems getting the form parameters in the following Compojure example: (ns hello-world (:use compojure.core, ring.adapter.jetty)
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari
This is a follow-up to my earlier question. I came up with a bizarre object scheme from my reading of Let Over Lambda and can think of no advantages over protocols, but want to get opinions. I am jus