public static range<T extends AbstractInt>(start as T, stop as T, delta as T) as Generator<T>:
Builds a Python-style integer range from start to stop (exclusive) using the provided step.
for i in range(10, 0, -2): print(i)
A generator containing each integer in the requested interval.