jashkenas--coffeescript/documentation/coffee/splats.coffee

28 lines
416 B
CoffeeScript
Raw Normal View History

2010-07-29 00:51:35 -04:00
gold = silver = rest = "unknown"
2010-01-04 23:26:27 -05:00
2010-07-29 00:51:35 -04:00
awardMedals = (first, second, others...) ->
gold = first
silver = second
rest = others
2010-01-04 23:26:27 -05:00
2010-07-29 00:51:35 -04:00
contenders = [
2010-01-04 23:26:27 -05:00
"Michael Phelps"
"Liu Xiang"
"Yao Ming"
"Allyson Felix"
"Shawn Johnson"
"Roman Sebrle"
"Guo Jingjing"
"Tyson Gay"
"Asafa Powell"
"Usain Bolt"
]
awardMedals contenders...
2010-01-04 23:26:27 -05:00
2010-01-25 00:14:00 -05:00
alert "Gold: " + gold
alert "Silver: " + silver
2010-12-12 21:41:04 -05:00
alert "The Field: " + rest