RosettaCodeData/Task/Loops-For-with-a-specified-step/PowerShell/loops-for-with-a-specified-step.psh

4 lines
44 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
for ($i = 0; $i -lt 10; $i += 2) {
$i
}