#5
conj on lists
 

Difficulty:Elementary
Topics:


When operating on a list, the conj function will return a new list with one or more items "added" to the front.
test not run
(= __ (conj '(2 3 4) 1))
test not run
(= __ (conj '(3 4) 2 1))


Code which fills in the blank: