Archived
13 lines
196 B
Plaintext
13 lines
196 B
Plaintext
|
|
# integers
|
|
= [ 1, 2, 3 ]
|
|
|
|
# colors
|
|
= [ "red", "yellow", "green" ]
|
|
|
|
# nested
|
|
= [ [ 1, 2 ], [3, 4, 5] ]
|
|
= [ [ 1, 2 ], ["a", "b", "c"] ]
|
|
= [ "all", 'strings', """are the same""", '''type''' ]
|
|
|