Prints a list to the results file.
ListPrint (lList)
| Variable | Description |
|---|---|
| lList | The list to print. LIST. |
ListPrint prints a list to the results file, with one item per line and with quotation marks and braces removed.
[-] LIST lFruit = {...}
[ ] "apples"
[ ] "oranges"
[ ] "bananas"
[ ] ListPrint (lFruit)
[ ] // Prints:
[ ] // apples
[ ] // oranges
[ ] // bananas