RosettaCodeData/Task/Loops-Downward-for/CoffeeScript/loops-downward-for.coffee

10 lines
216 B
CoffeeScript
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
# 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