503f75d08b
These names don't make sense now that we run both suites the same way.
21 linhas
213 B
PHP
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";
|
|
|
|
|