RosettaCodeData/Task/Loops-For-with-a-specified-step/PowerShell/loops-for-with-a-specified-step.ps1
2026-04-30 12:34:36 -04:00

3 lines
44 B
PowerShell

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