function multiply(a, b = integer) = integer
end = a * b
rem - exercise the function
print "The product of 9 times 3 is"; multiply(9, 3)
end