mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-01-13 16:57:54 -05:00
* 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
6 lines
180 B
CoffeeScript
6 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}!"
|