RosettaCodeData/Task/Function-definition/SPARK/function-definition-3.spark

7 lines
143 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
package body Functions is
function Multiply (A, B : Integer) return Integer is
begin
return A * B;
end Multiply;
end Functions;