Key Concepts
Core Clojure ideas used throughout the track: persistent collections, namespaces, vars, and REPL workflow.
These are the “you’ll see them everywhere” ideas: the concepts that show up across Clojure codebases and across this track.
If a chapter feels confusing, it’s often because one of these fundamentals is still fuzzy. Use this section for quick definitions, then return to the lesson that used the term so you see it in context.
In this section
-
Immutable Data Structures
What immutable data structures are, why Clojure uses them everywhere, and how Java developers should reason about updates and structural sharing.
-
Namespaces
What namespaces do in Clojure, how they differ from Java packages, and how to organize code without creating naming conflicts.
-
Vars and Bindings
What vars and bindings are in Clojure, how `def`, `let`, and `binding` differ, and where Java developers usually get confused.