5 lines
69 B
PHP
5 lines
69 B
PHP
<?php
|
|
for ($n = 0; is_int($n); $n++) {
|
|
echo decoct($n), "\n";
|
|
}
|
|
?>
|