Files
coffeescript/documentation/coffee/switch.coffee
2009-12-30 00:22:27 -05:00

9 lines
215 B
CoffeeScript

switch day
when "Tuesday" then eat_breakfast()
when "Wednesday" then go_to_the_park()
when "Saturday"
if day is bingo_day
go_to_bingo()
go_dancing()
when "Sunday" then go_to_church()
else go_to_work()