Annotation of embedaddon/php/tests/lang/002.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Simple While Loop Test
        !             3: --FILE--
        !             4: <?php
        !             5: $a=1; 
        !             6: while ($a<10) {
        !             7:        echo $a;
        !             8:        $a++;
        !             9: }
        !            10: ?>
        !            11: --EXPECT--
        !            12: 123456789

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>