Returning values

function square($x)
{
    return $x * $x;
}
echo square(4);  # => 16
Comments