Something I wasn't able to find: how to declare a char in the IDE that is not CHR(xx)
"A" is really string, not a single char, and I need a map as the following:
How can I specify the key as a single char?
"A" is really string, not a single char, and I need a map as the following:
B4X:
Dim countrymap As Map = CreateMap( _
"1": "USA", _
"3": "Mexico", _
"5": "USA", _
"J": "Japan", _
"S": "UK" _
)