take
builtin-function
(take count seq) (take count)
(take count seq)
(take count)
Returns the first count items in seq. The second form returns a transducer.
count
seq
make-html > (take 3 (series 10)) it: (1 2 3)