Next: The for-as-across subclause, Previous: The for-as-equals-then subclause, Up: Variable Initialization and Stepping Clauses
;; Collect some numbers.
 (loop for item = 1 then (+ item 10)
       for iteration from 1 to 5
       collect item)
⇒  (1 11 21 31 41)