से जावा कॉलिंग जब मैं Clojure में निम्न कोड (आरईपीएल से) चलाने का प्रयास:Clojure
(dotimes [i 5]
(.start
(Thread.
(fn []
(Thread/sleep (rand 1000))
(println (format "Finished %d on %s" i (Thread/currentThread)))))))
मैं निम्नलिखित त्रुटि मिलती है:
java.lang.Exception: Unable to resolve symbol: i in this context
clojure.lang.Compiler$CompilerException: NO_SOURCE_FILE:6: Unable to resolve symbol: i in this context
at clojure.lang.Compiler.analyze(Compiler.java:3713)
क्या मैं गलत यहाँ कर रहा हूँ?