Files
wren/test/language/list/trailing_comma.wren
T

5 lines
86 B
Plaintext
Raw Normal View History

2015-08-31 07:23:36 -07:00
var list = ["a", "b",]
2015-05-30 22:18:37 +02:00
IO.print(list[0]) // expect: a
IO.print(list[1]) // expect: b