jashkenas--coffeescript/test/fixtures/execution/test_switch.coffee

18 lines
216 B
CoffeeScript
Raw Normal View History

num: 10
result: switch num
2009-12-29 04:08:02 +00:00
when 5 then false
when 'a'
true
true
false
when 10 then true
# Mid-switch comment with whitespace
# and multi line
2009-12-29 04:08:02 +00:00
when 11 then false
else false
print(result)