mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
17 lines
366 B
JavaScript
17 lines
366 B
JavaScript
(function(){
|
|
var _a, _b, _c, city, futurists, poet, street;
|
|
futurists = {
|
|
sculptor: "Umberto Boccioni",
|
|
painter: "Vladimir Burliuk",
|
|
poet: {
|
|
name: "F.T. Marinetti",
|
|
address: ["Via Roma 42R", "Bellagio, Italy 22021"]
|
|
}
|
|
};
|
|
_a = futurists;
|
|
_b = _a.poet;
|
|
poet = _b.name;
|
|
_c = _b.address;
|
|
street = _c[0];
|
|
city = _c[1];
|
|
})();
|