is there a way, currently to achive this in lumo
?
boot.user=> (defn my-fn [n] n)
#'boot.user/my-fn
boot.user=> (var-get (resolve 'boot.user/my-fn))
#object[boot.user$my_fn 0x2735bf41 "boot.user$my_fn@2735bf41"]
auto answer, maybe by querying the compiler state (❓)
resolve
already works
I just don't know if I can get hold of the function object
@richiardiandrea @(resolve 'my.ns/my-var)
?
ohoooo cool
I tried var-get
but I did not think of @
thanks it works ! 😉