RosettaCodeData/Task/Count-in-octal/PowerShell/count-in-octal.psh
2015-11-18 06:14:39 +00:00

5 lines
77 B
Text

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