RosettaCodeData/Task/Loops-While/PowerShell/loops-while.psh

6 lines
55 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
[int]$i = 1024
while ($i -gt 0) {
$i
$i /= 2
}