4 lines
72 B
Batchfile
4 lines
72 B
Batchfile
@echo off
|
|
for %%A in (This is a sample collection) do (
|
|
echo %%A
|
|
)
|