clojure-site
clojure-site copied to clipboard
clojure.org site
Per discussion on Slack about using `clojure.tools.build` to run tests that need a particular classpath, including the test runner itself, Alex said "you can use a combo of create-basis, java-command,...
Add a better syntax reference to the reference
It's come up many times on slack that this is generally used wrong and is to be discouraged,
We talk about Clojure's Unified Succession Model when explaining the various reference types, but it is not mentioned on the site. This [SO answer](https://stackoverflow.com/questions/39309911/what-is-the-unified-update-model/39310567#39310567) might be a good starting point....
What do you think about adding a page discussing core.async? I don't think I've seen any official documentation on usage. There is https://github.com/clojure/core.async/blob/master/examples/walkthrough.clj but I think some more documentation could...
It could be good to have a guide on using direct linking which: - Shows an example of how to set it up in a Leiningen and Boot application -...
There are various ways to define and access properties defined with protocols and data types which are non-obvious and not explained or clarified in the Protocols or Data Types guides...
Hello Everyone I´d like to contribute to Clojure , creating a Brazilian Portuguese version of the website, to help spreading the word of Clojure among Brazilian developers. Can anyone tell...
When implementing Protocols using `defrecord` there are some missing affordances. As an example, :pre and :post conditions cannot be applied. [ Yes, I know we will soon have spec but...
The following example included in https://clojure.org/reference/reducers won't run in parallel because `range` is a seq: ```clojure (r/foldcat (r/filter even? (r/map inc (range 100000)))) ``` It is confusing to find a...