5 ms·
I use Clojure which have a repl base workflow, I never need to compile anything to test my code and the feedback is instant.
by jbeja 11y ago
I use Clojure which have a repl base workflow, I never need to compile anything to test my code and the feedback is instant.
- hellofunk 11y agoYou always compile your function, var, or file before seeing changes in Clojure. But, compilation is usually quite fast since you are linking against precompiled binaries in your dependencies, unlike, for example, header-only sources. But to say you never compile anything in Clojure is wrong.