5 lines
76 B
Text
5 lines
76 B
Text
|
|
function Multiply(a, b : Integer) : Integer;
|
||
|
|
begin
|
||
|
|
Result := a * b;
|
||
|
|
end;
|