I downloaded clojure-clr, and I found that it has two execution binaries – Clojure.Main.exe and Clojure.Compile.exe. I see that Clojure.Main.exe is REPL, and I’m not sure what Clojure.Compile.exe does. What do those two tools do exactly?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Clojure.Compile.exe let’s you compile Clojure code for usage in the CLR, as clojure is a compiled language:
Source: http://clojure.org/
EDIT
However in this case, we’re dealing with the CLR port, so the end result is meant to run under the .NET CLR instead of the JVM.
The REPL gives you the flexibility of prototyping code quickly, without having to continually go through the compile process to test code changes.