This code does not execute properly. Try to figure out why.
def multiply(a, b): if(a != None and b != None): return a * b
function Multiply($a, $b) { return (( $a * $b )) }
Last updated 4 years ago