joker

Discuss all things joker, the Clojure interpreter/linter on top of Go. https://github.com/candid82/joker
2020-03-09T13:47:25.005900Z

channels work fine, thats great. how do I close one? I see Close function in channel.go

2020-03-09T13:47:35.006300Z

(defonce x (chan))
;error (close x)

2020-03-10T10:09:02.007500Z

thanks. didn't see the docs before. was also looking for select from channels, which seems to be not implemented

jcburley 2020-03-09T15:48:54.006500Z

Try (close! x).

jcburley 2020-03-09T18:01:37.006700Z

Might be worth finding occurrences of “channel” here: https://candid82.github.io/joker/joker.core.html

hlship 2020-03-09T18:08:20.007200Z

The embedded database thing looks very cool.

👍 3