Hello
 
Here is my code:
 
program Ex1 (input, output);
 
type NumNode = record
            Value: integer;
            pNext: ^ NumNode;
end;
 
type nNumber = record
           DigitsAmount:integer;
           DigitValue:^ NumNode;
           MSD: integer;
           DigitBase: integer;
end;
 
function a (b:integer): integer;
begin
end;
 
There is nore code, but I dont think it is needed to understand what causes the compiler error.
What might cause this compilation error?
 
P.S.: I didnt see where I can turn off HTML email.
 
 


Do you Yahoo!?
Yahoo! Mail - Easier than ever with enhanced search. Learn more.