09 02 2012 coffeescript Tweet
Rubyのようにこんな感じに書きたいのだけど
switch Math.floor(Math.random()*100) when 0..30 then console.log('small') when 31..60 then console.log('middle') else console.log('large')
そうすると、
Error: In test.coffee, Parse error on line 2: Unexpected '..'
と怒られるのです。