998951619f
We did not intend to imply our copyrights last forever Closes #759
20 linhas
236 B
PHP
20 linhas
236 B
PHP
<?php
|
|
// Copyright 2004-2013 Facebook. All Rights Reserved.
|
|
|
|
|
|
echo "Starting\n";
|
|
|
|
function foo($a, $b, $c) {
|
|
return $a + $b + $c;
|
|
}
|
|
|
|
function main() {
|
|
$x = 4;
|
|
$x = foo(1, $x == 3 ? 3: 2, $x);
|
|
echo $x;
|
|
}
|
|
|
|
main();
|
|
|
|
echo "\ndone";
|