Add the ability to do reverse for loops, such as...
for i in range(11, 0)
Currently this is not possible, as the loop is simply not run if the first argument(11) is larger than second argument(0)
I believe this could be done easily by checking if the first argument is larger than the second argument, and if it is, swapping the arguments
Add the ability to do reverse
forloops, such as...for i in range(11, 0)Currently this is not possible, as the loop is simply not run if the first argument
(11)is larger than second argument(0)I believe this could be done easily by checking if the first argument is larger than the second argument, and if it is, swapping the arguments