Count in octal: Difference between revisions

Content added Content deleted
(Add lang example)
Line 1,852: Line 1,852:
LabVIEW contains a Number to Octal String function. The following image shows the front panel and block diagram.<br/>
LabVIEW contains a Number to Octal String function. The following image shows the front panel and block diagram.<br/>
[[file:Count_in_octal.png]]
[[file:Count_in_octal.png]]

=={{header|Lang}}==
<syntaxhighlight lang="lang">
$i = 0
loop {
fn.println(fn.toTextBase($i, 8))
$i += 1
}
</syntaxhighlight>


=={{header|Lang5}}==
=={{header|Lang5}}==