joker

Discuss all things joker, the Clojure interpreter/linter on top of Go. https://github.com/candid82/joker
hlship 2019-10-24T22:00:05.015200Z

Missing some basic math: want to divide (/ a b) and round to nearest, or round up. No equivalent of java.math methods to lean on. Am I missing anything?

jcburley 2019-10-24T22:03:06.015300Z

Joker doesn't define ceiling/floor functions (yet), but it does have joker.core/quot and joker.core/rem (quotient and remainder), which you might find helpful in throwing something together.