#45
Intro to Iterate
 

Difficulty:Easy
Topics:seqs


The iterate function can be used to produce an infinite lazy sequence.
test not run
(= __ (take 5 (iterate #(+ 3 %) 1)))


Code which fills in the blank: