Format | Description | Example |
---|---|---|
{ a , b } | The elements of the list, separated by commas and enclosed in braces. |
LIST MyList = {"a","b"} |
{...} | The literal characters {...} followed by indented lines, each containing one element of the list |
[-] SET Colors = {...} [ ] red [ ] green |
<text> |
For lists of string elements only. The literal characters <text> followed by indented lines each containing one element of the list. Each element is treated as the literal text of a string. Quotation marks are not needed to indicate the strings. Additional indentation levels on the lines are interpreted as tabs in the string. |
[-] LIST MyList = <text> [ ] a [ ] "b" [ ] c |