RosettaCodeData/Task/Loops-Foreach/Batch-File/loops-foreach-2.bat
2015-11-18 06:14:39 +00:00

5 lines
102 B
Batchfile

@echo off
set "collection=This is a sample collection"
for %%A in (%collection%) do (
echo %%A
)