satyr / coco

Unfancy CoffeeScript
http://satyr.github.com/coco/
MIT License
498 stars 48 forks source link

Support for declining ranges #184

Closed ksdlck closed 11 years ago

ksdlck commented 11 years ago

It would be nice if

for i of [100 to 1]
  console.log i

would generate a range decreasing from 100 to 1.

vendethiel commented 11 years ago

use [100 to 1 by -1]

satyr commented 11 years ago

Maybe by -1 should be implied for num/char ranges since the intention is pretty obvious.

vendethiel commented 11 years ago

Definitely.