diff options
Diffstat (limited to 'tests/lang/002.phpt')
-rw-r--r-- | tests/lang/002.phpt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/lang/002.phpt b/tests/lang/002.phpt new file mode 100644 index 0000000..ec14d01 --- /dev/null +++ b/tests/lang/002.phpt @@ -0,0 +1,12 @@ +--TEST-- +Simple While Loop Test +--FILE-- +<?php +$a=1; +while ($a<10) { + echo $a; + $a++; +} +?> +--EXPECT-- +123456789 |