PHP
$new_val = png(3,4); function png($val1, $val2) { $sum = $val1 + $val2; return $sum; } echo $new_val. //returns the value to the original caller ($new_val string turns from png(3,4) to the output of the "function png"