The do angle = 0, 359 counts up from 0 to 359, printing the sine of each angle. The do angle = 359, 0 attempts to count up from 359, but immediately finds angle > 0, so the number of iterations is zero.
do angle = 0, 359
do angle = 359, 0