You can read the motivation behind clj-java-decompiler and the usage example in the blog post. This library is an integrated Clojure-to-Java decompiler usable from the REPL. Under the hood, it uses ...
When using this to decompile my own Java code for testing, it decompiles some things wrong. For example when my code has a for loop like this: for (int n = 0; n<1000000; n++) I find that it is ...