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

2013-04-10 22:43:41 -07:00
for ($i = 0; $i -lt 10; $i += 2) {
$i
}