RosettaCodeData/Task/Function-definition/Simula/function-definition.simula

10 lines
154 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
BEGIN
INTEGER PROCEDURE multiply(x, y);
INTEGER x, y;
BEGIN
multiply := x * y
END;
Outint(multiply(7,8), 2);
Outimage
END