6 lines
102 B
Batchfile
6 lines
102 B
Batchfile
|
|
@echo off
|
||
|
|
set "collection=This is a sample collection"
|
||
|
|
for %%A in (%collection%) do (
|
||
|
|
echo %%A
|
||
|
|
)
|