RosettaCodeData/Task/Loops-Foreach/Batch-File/loops-foreach-2.bat
2023-07-01 13:44:08 -04:00

5 lines
102 B
Batchfile

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