I have the following code:
 
program Test (input, output);
 
type Num1 = record
         Value: integer;
end;
 
type Num2 = record
         Value: integer;
end;
 
type Num3 = record
         Value: integer;
end;
 
function a (b:integer): integer;
begin
end;
 
begin
end.
 
I get the following errors:
 
test.pas:11: wrong order of declarations according to ISO 7185 Pascal
test.pas:15: wrong order of declarations according to ISO 7185 Pascal
 
How do I fix this?


Do you Yahoo!?
Make Yahoo! your home page