ListPrint Function

Action

Prints a list to the results file.

Syntax

ListPrint (lList)
Variable Description
lList The list to print. LIST.

Notes

ListPrint prints a list to the results file, with one item per line and with quotation marks and braces removed.

Example

[-] LIST lFruit = {...}
	[ ] "apples" 
	[ ] "oranges" 
	[ ] "bananas" 
[ ] ListPrint (lFruit)
[ ] // Prints:
[ ] // apples
[ ] // oranges
[ ] // bananas