6 lines
No EOL
62 B
PHP
6 lines
No EOL
62 B
PHP
<?php
|
|
$ia = 10
|
|
while ( $ia < 20 ){
|
|
print $ia;
|
|
$ia++;
|
|
} |