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

10 lines
247 B
CoffeeScript
Raw Normal View History

2009-12-21 16:41:45 +00:00
switch day
2010-01-14 04:24:45 +00:00
when "Mon" then go_to_work()
when "Tue" then go_to_the_park()
when "Thu" then go_ice_fishing()
when "Fri", "Sat"
if day is bingo_day
go_to_bingo()
go_dancing()
2010-01-14 04:24:45 +00:00
when "Sun" then go_to_church()
else go_to_work()