Jump to content

Count in octal: Difference between revisions

(→‎{{header|Elixir}}: add an example with anonymous function.)
Line 1,124:
00000001216
</pre>
 
=={{header|PowerShell}}==
<lang PowerShell>[int64]$i = 0
While ( $True )
{
[Convert]::ToString( ++$i, 8 )
}</lang>
 
=={{header|PureBasic}}==
Cookies help us deliver our services. By using our services, you agree to our use of cookies.