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

10 lines
154 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
BEGIN
INTEGER PROCEDURE multiply(x, y);
INTEGER x, y;
BEGIN
multiply := x * y
END;
Outint(multiply(7,8), 2);
Outimage
END