Skip to main content

Viewing and Killing Arrays

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

Terminal


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

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