mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 04:08:04 +02:00
16 lines
113 B
ObjectPascal
16 lines
113 B
ObjectPascal
{ Old file: tbs0019.pp }
|
|
{ }
|
|
|
|
type
|
|
b = ^x;
|
|
|
|
x = byte;
|
|
|
|
var
|
|
pb : b;
|
|
|
|
begin
|
|
new(pb);
|
|
pb^:=10;
|
|
end.
|