mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
6c759d49bd
* Docs shorthand object notation A simple but slightly more imaginative example of shorthand object notation. Closes #1808. Signed-off-by: Daniel Bayley <daniel.bayley@me.com> * Update for new documentation folder structure * Fix typo
5 lines
180 B
CoffeeScript
5 lines
180 B
CoffeeScript
name = "Michelangelo"
|
|
mask = "orange"
|
|
weapon = "nunchuks"
|
|
turtle = {name, mask, weapon}
|
|
output = "#{turtle.name} wears an #{turtle.mask} mask. Watch out for his #{turtle.weapon}!"
|