Downward for
for (var i = 10; i >= 0; i--) {
say i
}for i in (11 ^.. 0) {
say i
}10.downto(0).each { |i|
say i
}Last updated
for (var i = 10; i >= 0; i--) {
say i
}for i in (11 ^.. 0) {
say i
}10.downto(0).each { |i|
say i
}Last updated