tb0020.pp 321 B

123456789101112131415161718192021222324252627
  1. { Old file: tbs0024.pp }
  2. { }
  3. type
  4. charset=set of char;
  5. trec=record
  6. junk : array[1..32] of byte;
  7. t : charset;
  8. end;
  9. var
  10. tr : trec;
  11. tp : ^trec;
  12. procedure Crash(const k:charset);
  13. begin
  14. tp^.t:=[#7..#10]+k;
  15. end;
  16. begin
  17. tp:=@tr;
  18. Crash([#20..#32]);
  19. end.