Arquivos
hhvm/hphp/test/quick/qop2.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

26 linhas
493 B
PHP

<?php
function f() {
$a = true;
$b = true;
echo ($a && $b) ? "yes\n" : "no\n";
echo ($a || $b) ? "yes\n" : "no\n";
echo "\n";
$a = true;
$b = false;
echo ($a && $b) ? "yes\n" : "no\n";
echo ($a || $b) ? "yes\n" : "no\n";
echo "\n";
$a = false;
$b = true;
echo ($a && $b) ? "yes\n" : "no\n";
echo ($a || $b) ? "yes\n" : "no\n";
echo "\n";
$a = false;
$b = false;
echo ($a && $b) ? "yes\n" : "no\n";
echo ($a || $b) ? "yes\n" : "no\n";
echo "\n";
}
f();