The SRFI states that (iota-range length start step) produces the
sequence:
start, (+ start step), (+ start (* 2 step)), …, (+ start (* length step))
This contradicts the meaning of the `length' argument, since this is
a sequence of length + 1 terms. The final term should be
(+ start (* (- length 1) step)),
as in SRFI 1's iota. The sample implementation produces the expected
sequence.
Regards,
--
Wolfgang Corcoran-Mathe <xxxxxx@sigwinch.xyz>
"Earth is the cradle of the mind, but one cannot live in a
cradle forever." --Konstantin Tsiolkovsky