Count in octal: Difference between revisions

add link to Delphi for pascal
(→‎{{header|Groovy}}: new solution)
(add link to Delphi for pascal)
Line 580:
{{works with|PARI/GP|2.4.3 and above}}
<lang parigp>n=0;while(1,printf("%o\n",n);n++)</lang>
 
=={{header|Pascal}}==
See [[Count_in_octal#Delphi | Delphi]]
 
=={{header|Perl}}==
Line 589 ⟶ 592:
my $i = 0;
printf "%o\n", $i++ while 1</lang>
 
=={{header|Perl 6}}==
<lang perl6>say .fmt: '%o' for 0 .. *;</lang>
Anonymous user