Count in octal: Difference between revisions

→‎{{header|Perl 6}}: use base method
m (Remove inapplicable flag)
(→‎{{header|Perl 6}}: use base method)
Line 822:
 
=={{header|Perl 6}}==
<lang perl6>say .fmt: '%o'base(8) for 0 .. *^Inf;</lang>
{{out}}
<pre>0</pre>
Here we arbitrarily show as many lines of output as there are lines in the program. <tt>:-)</tt>
 
=={{header|PHP}}==
Anonymous user