jashkenas--coffeescript/documentation/coffee/conditionals.coffee

13 lines
141 B
CoffeeScript
Raw Normal View History

2010-07-29 00:51:35 -04:00
mood = greatlyImproved if singing
2009-12-21 11:41:45 -05:00
if happy and knowsIt
clapsHands()
chaChaCha()
2010-07-29 00:51:35 -04:00
else
showIt()
2009-12-21 11:41:45 -05:00
2010-07-29 00:51:35 -04:00
date = if friday then sue else jill
2009-12-21 11:41:45 -05:00
2010-12-12 21:41:04 -05:00