Arquivos
hhvm/hphp/test/quick/flow.php
T
ptarjan 503f75d08b Rename test directories
These names don't make sense now that we run both suites the same
way.
2013-04-17 09:06:51 -07:00

21 linhas
213 B
PHP

<?php
$x = 2 + 3;
if($x < 4) {
$y = 1 + 2 * 3 / 4 % 5;
} else {
$y = 6 + 7 - 8 * 9 / 10 % 11;
}
function f() {
return 2 + 3 + 4;
}
function g() {
return 1 + 7;
}
echo "$y " . f() . " " . g() . "\n";