coffeescript-updates.md CoffeeScript 1.7 is shaping up to be a pretty kick-ass release with significant improvements. Here are the ones I'm most excited about, in order of my own excitement. Parentheses-free chaining jashkenas/coffeescript#3263 Years of being wished for, finally granted! result = range 1, 3 .concat range 4, 6 .map (x) -> x * x .filter (x) -> x % 2 is 0 console.log result # [4, 16,