#32
Duplicate a Sequence
 

Difficulty:Easy
Topics:seqs


Write a function which duplicates each element of a sequence.
test not run
(= (__ [1 2 3]) '(1 1 2 2 3 3))
test not run
(= (__ [:a :a :b :b]) '(:a :a :a :a :b :b :b :b))
test not run
(= (__ [[1 2] [3 4]]) '([1 2] [1 2] [3 4] [3 4]))
test not run
(= (__ [44 33]) [44 44 33 33])


Code which fills in the blank: