joker

Discuss all things joker, the Clojure interpreter/linter on top of Go. https://github.com/candid82/joker
richiardiandrea 2019-03-24T03:48:16.042600Z

Thanks! I should've read the README 😄 > Joker doesn't have the same level of interoperability with the host language (Go) as Clojure does with Java or ClojureScript does with JavaScript. It doesn't have access to arbitrary Go types and functions. There is only a small fixed set of built-in types and interfaces. Dot notation for calling methods is not supported (as there are no methods). All Java/JVM specific functionality of Clojure is not implemented for obvious reasons.

richiardiandrea 2019-03-24T03:58:18.043600Z

So my next (newbie) question would be then how to use the time constants like in this article...https://flaviocopes.com/go-date-time-format

richiardiandrea 2019-03-24T03:59:51.044400Z

I am interested in Time.RFC1123 specifically

Candid 2019-03-26T04:59:27.044700Z

time format constants are not exposed in Joker, but you can just copy and paste it from Go docs: (def RFC1123 "Mon, 02 Jan 2006 15:04:05 MST")

richiardiandrea 2019-03-26T16:46:32.045800Z

Oh cool that and the gostd fork should give me what I need then! Thank you!