RosettaCodeData/Task/Function-definition/BCPL/function-definition-2.bcpl

5 lines
94 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let multiply(a, b) = valof
$( // any imperative statements could go here
resultis a * b
$)