RosettaCodeData/Task/Function-definition/BCPL/function-definition-2.bcpl
2023-07-01 13:44:08 -04:00

4 lines
94 B
Text

let multiply(a, b) = valof
$( // any imperative statements could go here
resultis a * b
$)