RosettaCodeData/Task/Function-definition/Delphi/function-definition.delphi
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

4 lines
73 B
Text

function Multiply(a, b: Integer): Integer;
begin
Result := a * b;
end;