tb0070.pp 182 B

1234567891011
  1. { Old file: tbf0343.pp }
  2. {$mode delphi}
  3. type
  4. TListEntry = record
  5. Next: ^TListEntry; // delphi and fpc allows this now
  6. Data: Integer;
  7. end;
  8. begin
  9. end.