tbs0019.pp 92 B

12345678910111213
  1. type
  2. b = ^x;
  3. x = byte;
  4. var
  5. pb : b;
  6. begin
  7. new(pb);
  8. pb^:=10;
  9. end.