macintosh_cookbook/examples/function.pas

13 lines
148 B
ObjectPascal
Raw Normal View History

2020-05-07 09:47:11 +00:00
program ExampleFunction;
function Add (a, b: integer): Integer;
begin
Add := a + b;
end;
begin
ShowText;
Writeln('5+6=', Add(5, 6));
end.