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

5 lines
94 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
2015-09-15 07:46:09 -07:00
System.print(list[0]) // expect: a
System.print(list[1]) // expect: b