Mainly to get rid of one top level directory. But this will also be useful when there are tests of the embedding API.
11 lines
133 B
Plaintext
11 lines
133 B
Plaintext
// Allow after '[' and ',', and before ']'.
|
|
var list = [
|
|
|
|
"a",
|
|
"b"
|
|
|
|
]
|
|
|
|
IO.print(list[0]) // expect: a
|
|
IO.print(list[1]) // expect: b
|