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

25 lines
413 B
CoffeeScript
Raw Normal View History

2010-07-29 04:51:35 +00:00
gold = silver = rest = "unknown"
2010-01-05 04:26:27 +00:00
2010-07-29 04:51:35 +00:00
awardMedals = (first, second, others...) ->
gold = first
silver = second
rest = others
2010-01-05 04:26:27 +00:00
2010-07-29 04:51:35 +00:00
contenders = [
2010-01-05 04:26:27 +00: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-05 04:26:27 +00:00
2010-01-25 05:14:00 +00:00
alert "Gold: " + gold
alert "Silver: " + silver
alert "The Field: " + rest