jashkenas--coffeescript/documentation/coffee/switch.coffee

10 lines
232 B
CoffeeScript
Raw Normal View History

2009-12-21 16:41:45 +00:00
switch day
when "Mon" then goToWork()
when "Tue" then goToThePark()
when "Thu" then goIceFishing()
2010-01-14 04:24:45 +00:00
when "Fri", "Sat"
if day is bingoDay
goToBingo()
goDancing()
when "Sun" then goToChurch()
else goToWork()