1 2 3 4 5 6 7 8 9
fun Map(){ return Map{ data:{} } } fun set(self:Map,key:String,value:Any){ self.data[key]=value }