Files
wren/test/list/newlines.wren
T

15 lines
197 B
Plaintext
Raw Normal View History

2013-12-20 12:42:11 -08:00
// Allow newlines in most places.
var list = [
"a"
, "b",
"c", "d"
]
2014-01-05 12:27:12 -08:00
IO.print(list[0]) // expect: a
IO.print(list[1]) // expect: b
IO.print(list[2]) // expect: c
IO.print(list[3]) // expect: d