Files
wren/test/list/newlines.wren
T

11 lines
133 B
Plaintext
Raw Normal View History

2014-04-04 07:51:18 -07:00
// Allow after '[' and ',', and before ']'.
2013-12-20 12:42:11 -08:00
var list = [
2014-04-04 07:51:18 -07:00
"a",
"b"
2013-12-20 12:42:11 -08:00
]
2014-01-05 12:27:12 -08:00
IO.print(list[0]) // expect: a
IO.print(list[1]) // expect: b