Objects
-
+
obj = object(key1 = value1, …);
+ - create an object with arguments as keys/values +
obj = object([["key1", value1], …]);
+ - create an object with list as keys/values
var = obj["name"];- get value from object by string
var = obj.name;