Count in octal: Difference between revisions

Forth
(Added Delphi example)
(Forth)
Line 180:
6337
</pre>
 
=={{header|Forth}}==
<lang forth>: octal
base @ 8 base !
0
begin
dup cr .
1+
dup 0=
until
drop
base ! ;</lang>
 
=={{header|Fortran}}==
Anonymous user