switch to PHP_EOL throughout for better Windows support for test cases
[phpt.git] / tests-supporting / tests / math / multiplication.phpt
blob9d9ed6d7f3b769359d98da7700f469800599e9d0
1 --TEST--
2 PHP is capable of basic multiplication
3 --FILE--
4 <?php
6 $a = 2.5;
7 $b = 2;
9 $result = $a * $b;
10 echo $result, PHP_EOL;
13 ===DONE===
14 --EXPECT--
16 ===DONE===