On 15 March 2005 14:27, loop lopy wrote:
type NumNode = record
Value: integer;
pNext: ^ NumNode;
end;
It will work when you change the code like this:
type
NumNodePtr = ^NumNode;
NumNode = record
Value: integer;
pNext: NumNodePtr;
end;
Regards,
Igor Marnat