RosettaCodeData/Task/Loops-Downward-for/PowerShell/loops-downward-for-1.psh

4 lines
41 B
Text
Raw Permalink Normal View History

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