This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-05-05
Channels
- # announcements (7)
- # babashka (20)
- # beginners (130)
- # bristol-clojurians (1)
- # cider (14)
- # clj-kondo (7)
- # cljdoc (14)
- # cljs-dev (15)
- # cljsrn (16)
- # clojars (11)
- # clojure (190)
- # clojure-dev (4)
- # clojure-europe (7)
- # clojure-italy (9)
- # clojure-nl (3)
- # clojure-romania (6)
- # clojure-uk (51)
- # clojurescript (44)
- # component (4)
- # conjure (28)
- # cursive (1)
- # data-science (4)
- # datascript (1)
- # datomic (30)
- # duct (4)
- # emacs (1)
- # figwheel (4)
- # fulcro (56)
- # graalvm (4)
- # helix (51)
- # jackdaw (2)
- # jobs-discuss (12)
- # joker (4)
- # lambdaisland (1)
- # local-first-clojure (1)
- # meander (73)
- # mid-cities-meetup (2)
- # nrepl (4)
- # off-topic (43)
- # pathom (56)
- # re-frame (37)
- # reagent (26)
- # shadow-cljs (161)
- # slack-help (9)
- # spacemacs (1)
- # tools-deps (18)
- # xtdb (18)
trying this on latest master
(joker.core/go-spew :hey {:MaxDepth 5 :Indent " " :UseOrdinals true})
just returns false. go this snippet from https://github.com/candid82/joker/blob/master/DEVELOPER.md
Looks like you already figured out that you need to rebuild the Joker executable via go build -tags go_spew
(thanks for submitting the Issue re the “go builds” typo!), in which case:
$ go build -tags go_spew
$ ./joker
Welcome to joker v0.15.3. Use '(exit)', EOF (Ctrl-D) or SIGINT (Ctrl-C) to exit.
user=> (joker.core/go-spew :hey {:MaxDepth 5 :Indent " " :UseOrdinals true})
(core.Keyword) {
InfoHolder: (core.InfoHolder) {
info: (*core.ObjectInfo)(#1)({
Position: (core.Position) {
endLine: (int) 1,
endColumn: (int) 24,
startLine: (int) 1,
startColumn: (int) 21,
filename: (*string)(#2)((len=6) "<repl>")
}
})
},
ns: (*string)(<nil>),
name: (*string)(#3)((len=3) "hey"),
hash: (uint32) 819820356
}
true
user=>