1
vote
1answer
73 views
How can I dynamically look up a static class member in Clojure?
In Clojure I can look up a static member of a Java class (e.g. a field holding a constant) like this:
ClassName/CONSTANT_FIELD
How can I access the member when I only know it's name at runtime? An …
2
votes
2answers
69 views
How would one create a Clojure Lint?
One example of a common Clojure programming error is expecting a lazy expression to be evaluated for side-effects. On the surface it appears checking for unused lazy expressions would be helpful. What …
3
votes
7answers
188 views
More explanation on Lexical Binding in Closures?
There are many SO posts related to this, but I am asking this again with a different purpose
I am trying to understand why closures are important and useful. One of things that I've read in other SO …
8
votes
9answers
329 views
Does Functional programming allow better runtime compiler optimizations?
NOTE: Already made this a Wiki. I don't care what this question is tagged as, as long as there is a good discussion.
I've heard that since in pure functional programs, there are no side effects and …
2
votes
1answer
68 views
Compojure HTML Formatting
I'm relatively new to Clojure and a complete HTML/Compojure virgin. I'm trying to use Compojure to create static pages of HTML using a function similar to this:
(defn fake-write-html
[dir args]
…
1
vote
1answer
49 views
Code completion in CounterClockWise?
Hi,
I am a first-time user of CounterClockWise, the Eclipse plugin for Clojure, and it appears that code completion just won't work. I keep wondering whether the problem lies between my keyboard and …
0
votes
2answers
75 views
namespace in clojure
I have created sample namespace:
[demas @arch.local.net ][~/dev/projects/diary]% cat shell_space.clj
(ns shell_space)
(defn test_fu []
(println "test-shell"))
How can I use the test_fu from my …
6
votes
3answers
186 views
How to read mentally Lisp/Clojure code
Thanks a lot for all the beautiful answers! Cannot mark just one as correct
Note: Already a wiki
I am new to functional programming and while I can read simple functions in Functional programming, …
0
votes
2answers
102 views
Lazy evaluation issue in Clojure
It tried the following in REPL and got no error (because of lazy evaluation):
(defn square [n] (* n n))
(if (= 0 0)
(println "hello")
(map square ["a" "b"]))
The following gives error …
4
votes
1answer
158 views
Haskell to Clojure
I am going over this haskell lecture on count down game, i don't know any haskell but i am intrested in the problem, i am trying to port his code to clojure.
this is the part i got stuck must be …
1
vote
1answer
90 views
Is this Clojure Indentend Properly?
http://pastebin.com/d2294a374
I've posted code indented in 2 different way in there. I get confused here because I am not sure what to do when a function has multiple arguments. Should each argument …
2
votes
1answer
93 views
Clojure: How to to recur upon exception?
I am trying to execute a func several times before giving up upon exceptions.
But it is not valid in Clojure to recur from catch block.
How can this be achieved ?
(loop [tries 10]
(try
…
7
votes
14answers
496 views
What to learn after PHP? Scala or Clojure?
I have a heavy web dev background with PHP. My reasons for learning a functional programming languages are:
to improve my programming skills. It was heavily suggested that learning a FPL helps. this …
3
votes
2answers
92 views
How do you evaluate a string as a clojure expression?
How would I get something similar to the following?:
(evaulate-text "(+ 1 2)") ; resolves to 3
3
votes
2answers
59 views
Building the directory tree
I am trying to build a directory tree such as how xml trees are represented, in the form of a vector, i can traverse the file system fine using the following snippet but i can't put my head around how …
