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