Being fairly new to clojure ecosystem. I thought it would be better to be dedicating a post to each of the data structures in Clojure.
Clojure has the following data structures
;; Lists
;; Vectors
;; Hashmaps
;; Sets
These are concrete data types, which are implementation of abstract data types.
This post will try to scratch the surface of - LISTS
LISTS
As the name goes, are a collection of group of values.