6 lines
85 B
Text
6 lines
85 B
Text
type
|
|
PLink = ^TLink;
|
|
TLink = record
|
|
FNext: PLink;
|
|
FData: integer;
|
|
end;
|