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