tbs0018.pp 79 B

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