Handle empty string map keys.

This commit is contained in:
Bob Nystrom
2015-03-17 07:00:54 -07:00
parent 91a23da5b0
commit b4fa4acce1
2 changed files with 12 additions and 4 deletions
+5
View File
@@ -0,0 +1,5 @@
var map = {
"": "empty string"
}
IO.print(map[""]) // expect: empty string