RosettaCodeData/Task/Count-in-octal/PowerShell/count-in-octal.ps1
2026-04-30 12:34:36 -04:00

5 lines
77 B
PowerShell

[int64]$i = 0
While ( $True )
{
[Convert]::ToString( ++$i, 8 )
}