source: liacs/coco/tests/declarations/lookup.p0@ 340

Last change on this file since 340 was 2, checked in by Rick van der Zwet, 15 years ago

Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)

File size: 164 bytes
RevLine 
[2]1program a;
2
3var
4 x: integer;
5
6procedure foo(y: integer);
7
8begin
9 if (x>y) then
10 writeinteger(x)
11 else
12 writeinteger(y)
13end;
14
15begin
16 x := 4;
17 foo(3)
18end.
Note: See TracBrowser for help on using the repository browser.