:dumpArr

dumps the array content / under construction

Description: call:dumpArr arr
Script:
1.
2.
3.
4.
5.
6.
7.
8.
:dumpArr arr -- dumps the array content / under construction
::           -- arr [in]  - array name
:$created 20060101 :$changed 20080219 :$categories Array
:$source https://www.dostips.com
SETLOCAL
call set i=%%%~1[#]%%
for /l %%n in (1,1,%i%) do call echo."%%%~1[%%n]%~2%%"
EXIT /b