Skip to main content

Viewing and Killing Arrays

generated description: treedone.gif

Use the Zwrite command to display the entire contents of an array, or parts of the array.

SAMPLES>zwrite A(5)
A(5)=4
A(5,"C")=4
A(5,"D",-2.7)=4
SAMPLES>

Remember the Kill command? Killing a node in the tree kills the node and its children. Kill A kills the entire structure. Kill A(5) kills that node and its three descendants.

FeedbackOpens in a new tab