diff options
Diffstat (limited to 'tests/basic/006.phpt')
-rw-r--r-- | tests/basic/006.phpt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/basic/006.phpt b/tests/basic/006.phpt new file mode 100644 index 0000000..c614cd9 --- /dev/null +++ b/tests/basic/006.phpt @@ -0,0 +1,6 @@ +--TEST-- +Add 3 variables together and print result +--FILE-- +<?php $a=1; $b=2; $c=3; $d=$a+$b+$c; echo $d?> +--EXPECT-- +6 |