mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-01-13 08:47:55 -05:00
14 lines
260 B
CoffeeScript
14 lines
260 B
CoffeeScript
futurists =
|
|
sculptor: "Umberto Boccioni"
|
|
painter: "Vladimir Burliuk"
|
|
poet:
|
|
name: "F.T. Marinetti"
|
|
address: [
|
|
"Via Roma 42R"
|
|
"Bellagio, Italy 22021"
|
|
]
|
|
|
|
{sculptor} = futurists
|
|
|
|
{poet: {name, address: [street, city]}} = futurists
|