Dictionary associates stored values with string keys ("key" is the first argument in get/set/remove functions). Integer "key" can be used to enumerate all elements.
Example: var d=Dictionary.new(); d.set("name","John"); d.set("age",44);
var i,element; for(i=0;i<d.size();i++) element=d.get(i);