5 lines
86 B
Ada
5 lines
86 B
Ada
|
|
function Multiply (A, B : Float) return Float is
|
||
|
|
begin
|
||
|
|
return A * B;
|
||
|
|
end Multiply;
|