600 B
600 B
Implementation Details in AVAP
In AVAP, variables are stored as strings, and lists and objects are managed using specific commands:
- Lists : To generate a list, use
variableToList(variable, list). To retrieve an item from the list, useitemFromList(list, index, variable_to_store_item). To get the number of items in the list, usegetListLen(list, var_to_store_list_length). - Objects (dictionaries) : An object is created with
AddvariableToJSON(key, value, object_variable). To retrieve a key from the object, usevariableFromJSON(object_variable, key, var_to_store_key_value).