clojure
clojure copied to clipboard
Practicalli Clojure REPL Driven Development
:memo: Description :white_check_mark: Checklist - [ ] Commits should be cryptographically signed (SSH or GPG) ## Practicalli Guidelines Please follow these guidelines when submitting a pull request - refer to...
:memo: Description Before: After: -- :white_check_mark: Checklist - [ ] Commits should be cryptographically signed (SSH or GPG) ## Practicalli Guidelines Please follow these guidelines when submitting a pull request...
Clojars requires all new projects to include a licence name within the pom.xml file (as of 29th September 2023) Existing projects have until the end of 2023 to include a...
- https://github.com/practicalli-john/circumspec
Review current guide to clojure.spec and extend with more examples. https://www.pixelated-noise.com/blog/2020/09/10/what-spec-is/ #### Example projects - https://github.com/practicalli-john/spec-cook - https://github.com/practicalli-john/fish-spec ## Existing content - https://practical.li/clojure/clojure-spec/
Write a guide showing how to create a REPL within the Clojure REPL. This helps understanding of how the REPL process works in Clojure. ## Basic Example ```clojure (defn repl-repl...
Suggestion to add a new page to the games section of Practicalli Clojure explaining the [connect four game](https://en.wikipedia.org/wiki/Connect_Four). A sample running solution can be tried on [replit.com](https://replit.com/@zwh/Connect-four-in-Clojure). It comes both...
Expand on the Clojure idioms of the Clojure Style guide, especially in terms of context Idioms should clearly describe why they are 'The Way' (idiomatic) - idiom name - rational...
core libraries use the following conventions when naming arguments f, g, h - function n - integer, usually a size index, i - integer index x, y - numbers xs...