#12
Sequences
 

Difficulty:Elementary
Topics:


All Clojure collections support sequencing. You can operate on sequences with functions like first, second, and last.
test not run
(= __ (first '(3 2 1)))
test not run
(= __ (second [2 3 4]))
test not run
(= __ (last (list 1 2 3)))


Code which fills in the blank: