This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-10-25
Channels
- # aws (2)
- # aws-lambda (2)
- # beginners (95)
- # boot (47)
- # cider (13)
- # clara (5)
- # cljs-dev (36)
- # cljsjs (9)
- # clojure (51)
- # clojure-austin (1)
- # clojure-greece (25)
- # clojure-italy (4)
- # clojure-japan (10)
- # clojure-russia (13)
- # clojure-spec (61)
- # clojure-uk (25)
- # clojurescript (26)
- # core-matrix (5)
- # cursive (8)
- # data-science (7)
- # datomic (43)
- # dirac (2)
- # emacs (8)
- # events (3)
- # fulcro (17)
- # graphql (29)
- # jobs-rus (4)
- # lambdaisland (4)
- # lein-figwheel (3)
- # leiningen (60)
- # luminus (15)
- # lumo (8)
- # mount (3)
- # off-topic (28)
- # om (22)
- # onyx (115)
- # other-languages (6)
- # pedestal (5)
- # re-frame (41)
- # reagent (12)
- # ring-swagger (12)
- # shadow-cljs (127)
- # unrepl (27)
- # yada (5)
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 ! 😉