public static range<T extends AbstractInt>(stop as T) as Generator<T>:
Builds a Python-style integer range from 0 to stop (exclusive).
0
stop
for i in range(5): print(i)
A generator containing 0, 1, ..., stop - 1.
0, 1, ..., stop - 1