Simple question, is it possible to do a for loop on a range of negative values? Specifically starting at -1 and iterating down to some negative value. for i in -1..x
apparently isn't kosher.
Other than the ugly solution of iterating on the absolute values and then applying the sign within the loop.