Глава 10: корректура

This commit is contained in:
Igor Simdyanov
2022-07-20 14:51:55 +03:00
parent c49bd1b0cf
commit 48892d7178
2 changed files with 2 additions and 4 deletions

View File

@ -1,7 +1,6 @@
<?php
$i = 0;
for (;;)
{
for (;;) {
$i++;
echo "$i<br />";
if ($i > 5) break;

View File

@ -1,8 +1,7 @@
<?php
$do_for = true;
$i = 0;
for (; $do_for; )
{
for (; $do_for; ) {
$i++;
echo "$i<br />";
if ($i > 5) $do_for = false;