- High level overview https://yogthos.github.io/ClojureDistilled.html
- An Animated Introduction to Clojure https://markm208.github.io/cljbook/
- Interactive tutorial in a browser https://tryclojure.org/
- Interactive exercises http://clojurescriptkoans.com/
- Clerk notebooks with introductory examples https://github.clerk.garden/anthonygalea/notes-on-clojure
- More interactive exercises https://4clojure.oxal.org/
- Lambda Island tutorials https://lambdaisland.com/
- Functional Programming with Clojure resources https://practicalli.github.io/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;;=============== play with flow ============== | |
| (require '[clojure.core.async :as async] | |
| '[clojure.core.async.flow :as flow] | |
| '[clojure.pprint :as pp] | |
| '[clojure.datafy :as d]) | |
| (set! *warn-on-reflection* true) | |
| (defn monitoring [{:keys [report-chan error-chan]}] | |
| (prn "========= monitoring start") |
Here is the list of talks that I found most useful to me.