mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-02-19 03:44:23 -05:00
16 lines
230 B
JavaScript
16 lines
230 B
JavaScript
(function(){
|
|
var array, object;
|
|
object = {
|
|
a: 1,
|
|
// Comments between the elements.
|
|
b: 2,
|
|
// Like this.
|
|
c: 3
|
|
};
|
|
array = [1,
|
|
// Comments between the elements.
|
|
2,
|
|
// Like this.
|
|
3
|
|
];
|
|
})(); |