5 lines
69 B
PHP
5 lines
69 B
PHP
|
<?php
|
||
|
function add($a, $b) {
|
||
|
return $a +$b; }
|
||
|
echo add(1,2);
|