user=> (take 5 (cycle ["a" "b"]))
("a" "b" "a" "b" "a")
user=> (take 10 (cycle (range 0 3)))
(0 1 2 0 1 2 0 1 2 0)
user=> (take 5 (cycle ["a" "b"]))
("a" "b" "a" "b" "a")
user=> (take 10 (cycle (range 0 3)))
(0 1 2 0 1 2 0 1 2 0)
user=> (take 5 (cycle ["a" "b"]))
("a" "b" "a" "b" "a")
user> (take 5 (cycle ["a" "b"]))
("a" "b" "a" "b" "a")