Em 13 de agosto de 2018, Allin escreveu:
(...)
Anyway, if I don't get any substantial support for this notion
I'll
quietly give it up.
I don't know if this can be considered as substantial [:)], but other
languages support decrementing:
Python:
for i in range(10,0,-1):
print i
R
for (i in 10:1) {
print(i)
}
Julia:
for i in 10:-1:0
println(i)
end
Matlab:
for k=10:-1:1
disp(i)
end
Best regards,
Henrique Andrade