RosettaCodeData/Task/Loops-For-with-a-specified-step/Batch-File/loops-for-with-a-specified-step.bat

5 lines
54 B
Batchfile
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
@echo off
for /l %%A in (1,2,10) do (
echo %%A
)