mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 12:03:45 +02:00
14 lines
92 B
ObjectPascal
14 lines
92 B
ObjectPascal
type
|
|
b = ^x;
|
|
|
|
x = byte;
|
|
|
|
var
|
|
pb : b;
|
|
|
|
begin
|
|
new(pb);
|
|
pb^:=10;
|
|
end.
|
|
|