4 lines
73 B
Text
4 lines
73 B
Text
function multiply(a, b: integer): integer;
|
|
begin
|
|
result := a * b;
|
|
end;
|