#89 Windows batch (bat) script that counts from 0 to 10 by 2:

for /l %%B in (10,-2,0) do echo %%B
pause