8 lines
143 B
Text
8 lines
143 B
Text
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
|