
An entry is a variable, string of text, or function. If a string of text follows the dictionary
variable, then the entry becomes a key-value pair. For example, the following program
adds two key-value pairs to a dictionary:
set $mydictionary['URL1'] 'links internally';
set $mydictionary['URL2'] 'links externally';
Adding Entries to List Variables
Use this form of the SET statement to add an entry to a list variable.
SET $list-variable entry </ event-statement-condition(s)>;
A list variable is an array that contains a list of numbers or text strings that are indexed.
As part of their name, list variables have a preceding '$' symbol and a subscript ...