I'm learning clojure on eclipse (counterclockwise plugin).

   - When I click "run" in eclipse (as I would do with Java) I get not only 
   the console opened but this "REPL" window. Why is it necessary and what 
   does it do?
   - When I click "run" it takes quite a few seconds to launch the app. Is 
   there a way to make it faster?
   - When I need to edit the code and relaunch (run) the the app I'm 
   getting this message: "The selection cannot be launched, and there are no 
   recent launches". What is that and why wouldn't it let me relaunch my code? 
   If I wait a while I can launch it again.
   - I was screwing around and I don't know what I did, but now "Run as" -> 
   "Clojure Application" option is gone. How do I get it back?
   
This is simple bit of code that I'm trying to run:

(ns ClojureTest.core)
(let [input (read-line)]
  (if (= "x" input)
    (do
      (println "Exit")
      (System/exit 0)
    )
    (do
      (println input)
      (recur)
    )
  ))

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to