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

8 lines
107 B
Plaintext
Raw Normal View History

var map = {
"a": 1,
"b": 2,
}
System.print(map["a"]) // expect: 1
System.print(map["b"]) // expect: 2