home *** CD-ROM | disk | FTP | other *** search
- {INPUT3.PAS}
- program this_program
- (file_one,file_2);
-
- {
- Description: Dummy Pascal program to test the Pascal parser
-
- Author: Karl Gerhard
- Date: 9/8/87
- Application: IBM PC and compatibles
- }
-
- var x34:integer;
-
- procedure zip;
-
- var
- N,G : integer;
- Begin
- N := 1;
- G :=2;
- repeat N := 3;
- repeat N := 4; until N - 3 = 5;
- until N + 5 >= 6;
- N := 7;
- End;
-
-
- BEGIN
- x34 := 34;
- END.
-
-