7 lines
600 B
Markdown
7 lines
600 B
Markdown
## 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, use `itemFromList(list, index, variable_to_store_item)` . To get the number of items in the list, use `getListLen(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, use `variableFromJSON(object_variable, key, var_to_store_key_value)` .
|