t or nil/() … (no literal falsex , - } e.g. ?\C-c-\M-sx \escaped \xXX \N{name} \uxxxx \Uxxxxxxxxhttps://www.gnu.org/software/emacs/manual/html_node/elisp/Sequences-Arrays-Vectors.html
length
nth N SEQ → nth element (starting from 0)
elt SEQ N
cons as Node type)‘(e1 e2 …) / ‘(e1 . (e2 . ( … )))
<aside> ⚠️
DO NOT use ‘(e1, e2) otherwise it means e1, with e2 (the former is a symbol with , as its part)
</aside>
(cons CAR CDR) → CONStruction of linked list cell
car → head (Content AddRess)
cdr → tail (type is cons) (Content DecRement)
[e1 e2 …]