PX4-Autopilot/misc/pascal/tests/src/001-beginend.pas
2011-12-19 19:24:09 +00:00

12 lines
155 B
ObjectPascal

{ the compound statement }
program beginend(output);
var
sum : integer;
begin
sum := 3 + 5;
writeln('sum=', sum, ' -sum=', -sum);
end.