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