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