summaryrefslogtreecommitdiff
path: root/tests/basic/007.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basic/007.phpt')
-rw-r--r--tests/basic/007.phpt6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/basic/007.phpt b/tests/basic/007.phpt
new file mode 100644
index 0000000..dc808b7
--- /dev/null
+++ b/tests/basic/007.phpt
@@ -0,0 +1,6 @@
+--TEST--
+Multiply 3 variables and print result
+--FILE--
+<?php $a=2; $b=4; $c=8; $d=$a*$b*$c; echo $d?>
+--EXPECT--
+64