Tagged Questions

Clojure is a dialect of the Lisp programming language. Clojure 1.3.0 was released on September 23rd, 2011. Release notes for this version are available on the Clojure project website.

learn more… | top users | synonyms

6
votes
2answers
117 views

Not getting integer overflow in Clojure?

I am running Clojure 1.3.0 with La Clojure in IntelliJ IDEA while reading The Joy Of Clojure, and on section 4.1.3 (page 64), the authors demonstrate integer overflow with the following code: (+ ...
3
votes
2answers
129 views

defmulti vs defprotocol?

It seems like both can be used to define functions that you can implement later, with different data types. AFAIK the major difference is that defmulti works on maps and defprotocol works on records. ...
2
votes
1answer
84 views

Clojure symbol evaluation error

So I currently have this code: (ns contact-form.core (:gen-class)) (def foo "Hello World!") (defn some-func [a-symbol] (println (str a-symbol "'s value is: " (eval a-symbol)))) (defn -main ...
2
votes
1answer
87 views

Finding the position of an object in a sequence in Clojure

Essentially, I want a function that works like this: user=> (pos 'c '(a b c d e f g) =) 2 user=> (pos 'z '(a b c d e f g) =) nil And I came up with this: (defn pos "Gets position of first ...