Skip to content

Instantly share code, notes, and snippets.

@rauhs
Created May 2, 2017 10:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rauhs/fbf9e184d41447daf7d90101a463766a to your computer and use it in GitHub Desktop.
Save rauhs/fbf9e184d41447daf7d90101a463766a to your computer and use it in GitHub Desktop.
(def ^:const c0 23.2)
(def ^:const c1 23)
(def ^:const c2 (+ c0 c1))
(defn const-expr []
c2)
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
import clojure.lang.AFunction;
public final class compile_inspect$const_expr extends AFunction {
public static final Object const__0 = Double.valueOf(46.2D);
public compile_inspect$const_expr() {
}
public static Object invokeStatic() {
return const__0;
}
public Object invoke() {
return invokeStatic();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment