summaryrefslogblamecommitdiff
path: root/misc/pascal/tests/src/001-beginend.pas
blob: 6f7a97958658d409dc46f9c488015e82f568284c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                        
{ the compound statement }

program beginend(output);

var
  sum : integer;

begin
  sum := 3 + 5;
  writeln('sum=', sum, ' -sum=', -sum);
end.