int DictNew()
Creates a new dictionary handle which can then be used by dictionary functions.
int dict = DictNew(); // Want a dictionary in a dictionary? Here's one way how! int subdict = DictNew(); DictSetInt(dict, "subdict", subdict); // Set the subdictionary's "hp" key = 0. DictSetInt(subdict, "hp", 0);
There are no talkbacks on this documentation page yet. Post the first?
Doc Nav |
Your docs |