6 lines
55 B
PowerShell
6 lines
55 B
PowerShell
|
|
[int]$i = 1024
|
||
|
|
while ($i -gt 0) {
|
||
|
|
$i
|
||
|
|
$i /= 2
|
||
|
|
}
|