1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00
jashkenas--coffeescript/documentation/coffee/splats.coffee
2010-01-26 23:23:59 -05:00

25 lines
No EOL
425 B
CoffeeScript

gold: silver: the_field: "unknown"
award_medals: (first, second, rest...) ->
gold: first
silver: second
the_field: rest
contenders: [
"Michael Phelps"
"Liu Xiang"
"Yao Ming"
"Allyson Felix"
"Shawn Johnson"
"Roman Sebrle"
"Guo Jingjing"
"Tyson Gay"
"Asafa Powell"
"Usain Bolt"
]
award_medals contenders...
alert "Gold: " + gold
alert "Silver: " + silver
alert "The Field: " + the_field