RosettaCodeData/Task/Loops-While/PowerShell/loops-while.ps1
2026-04-30 12:34:36 -04:00

5 lines
55 B
PowerShell

[int]$i = 1024
while ($i -gt 0) {
$i
$i /= 2
}