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

31 lines
370 B
CoffeeScript
Raw Normal View History

num: 10
result: switch num
2009-12-28 23:08:02 -05:00
when 5 then false
when 'a'
true
true
false
when 10 then true
# Mid-switch comment with whitespace
# and multi line
2009-12-28 23:08:02 -05:00
when 11 then false
else false
puts result
func: (num) ->
switch num
when 2, 4, 6
true
when 1, 3, 5
false
else false
puts func(2)
puts func(6)
puts !func(3)
puts !func(8)