mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-01-14 09:17:55 -05:00
10 lines
232 B
CoffeeScript
10 lines
232 B
CoffeeScript
switch day
|
|
when "Mon" then goToWork()
|
|
when "Tue" then goToThePark()
|
|
when "Thu" then goIceFishing()
|
|
when "Fri", "Sat"
|
|
if day is bingoDay
|
|
goToBingo()
|
|
goDancing()
|
|
when "Sun" then goToChurch()
|
|
else goToWork() |