5 lines
77 B
PowerShell
5 lines
77 B
PowerShell
[int64]$i = 0
|
|
While ( $True )
|
|
{
|
|
[Convert]::ToString( ++$i, 8 )
|
|
}
|