user=> (replace [:zeroth :first :second :third :fourth] [0 2 4 0])
[:zeroth :second :fourth :zeroth]
user=> (replace [10 9 8 7 6] [0 2 4])
[10 8 6]
user=> (replace {0 'zero, 1 'one, 2 'two} '(This is the code — 0 1 2 0))
(This is the code — zero one two zero)
user=> (replace [:zeroth :first :second :third :fourth] [0 2 4 0])
[:zeroth :second :fourth :zeroth]
user=> (replace [10 9 8 7 6] [0 2 4])
[10 8 6]
user=> (replace {0 'zero, 1 'one, 2 'two} '(This is the code — 0 1 2 0))
(This is the code — zero one two zero)