forked from Mirror/wren
6 lines
78 B
Plaintext
6 lines
78 B
Plaintext
var map = {
|
|
"": "empty string"
|
|
}
|
|
|
|
IO.print(map[""]) // expect: empty string
|