5 lines
66 B
Text
5 lines
66 B
Text
|
|
function multiply(a,b: real): real;
|
||
|
|
begin
|
||
|
|
multiply := a*b;
|
||
|
|
end;
|