jashkenas--coffeescript/documentation/coffee/objects_and_arrays.coffee

20 lines
214 B
CoffeeScript
Raw Normal View History

2010-07-29 04:51:35 +00:00
song = ["do", "re", "mi", "fa", "so"]
2010-01-05 03:19:45 +00:00
2010-08-05 03:14:34 +00:00
singers = {Jagger: "Rock", Elvis: "Roll"}
2010-07-29 04:51:35 +00:00
bitlist = [
2010-01-05 03:19:45 +00:00
1, 0, 1
0, 0, 1
1, 1, 0
]
kids =
brother:
2010-08-05 03:14:34 +00:00
name: "Max"
age: 11
sister:
2010-08-05 03:14:34 +00:00
name: "Ida"
2010-12-13 02:41:04 +00:00
age: 9