dict [function]

dict( [key, value, ...] )

returns a 'dict' (dictionary/hash table) object, containing the even arguments mapped to respective previous arguments

dict( "name", "John", "phone", 1234567890 ); // same as { name = "John", phone = 1234567890 }