RosettaCodeData/Task/Loops-For-with-a-specified-step/PowerShell/loops-for-with-a-specified-step.psh
2023-07-01 13:44:08 -04:00

3 lines
44 B
Text

for ($i = 0; $i -lt 10; $i += 2) {
$i
}