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