Count in octal: Difference between revisions

Add lang example
(Add lang example)
Line 1,852:
LabVIEW contains a Number to Octal String function. The following image shows the front panel and block diagram.<br/>
[[file:Count_in_octal.png]]
 
=={{header|Lang}}==
<syntaxhighlight lang="lang">
$i = 0
loop {
fn.println(fn.toTextBase($i, 8))
$i += 1
}
</syntaxhighlight>
 
=={{header|Lang5}}==
168

edits