RosettaCodeData/Task/Loops-Downward-for/CoffeeScript/loops-downward-for.coffee
2013-04-11 11:14:19 -07:00

9 lines
216 B
CoffeeScript

# The more compact "array comprehension" style
console.log i for i in [10..0]
# The "regular" for loop style.
for i in [10..0]
console.log i
# More compact version of the above
for i in [10..0] then console.log i