RosettaCodeData/Task/Function-definition/Delphi/function-definition.delphi
2023-07-01 13:44:08 -04:00

4 lines
73 B
Text

function multiply(a, b: integer): integer;
begin
result := a * b;
end;