--TEST--
Simple While Loop Test
--FILE--
<?php
$a
=1
while (
$a<10) {
    echo 
$a;
    
$a++;
}
?>
--EXPECT--
123456789