Library /sys$common/syshlp/dbg$help.hlb DEBUG, FOR, Examples *Conan The Librarian (sorry for the slow response - running on an old VAX) |
1.DBG> FOR I = 10 TO 1 BY -1 DO (EXAMINE A(I)) This command examines an array backwards. 2.DBG> FOR I = 1 TO 10 DO (DEPOSIT A(I) = 0) This command initializes an array to zero.
|