8 lines
144 B
PHP
8 lines
144 B
PHP
<?php
|
|
header("Content-Type: application/json; charset=UTF-8");
|
|
|
|
$outp = array ("answer" => "15");
|
|
|
|
echo "solveSum (".json_encode($outp).")";
|
|
?>
|