mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 23:23:41 +02:00
13 lines
79 B
ObjectPascal
13 lines
79 B
ObjectPascal
type
|
|
p = ^x;
|
|
x = byte;
|
|
|
|
var
|
|
b : p;
|
|
|
|
begin
|
|
new(b);
|
|
b^:=12;
|
|
end.
|
|
|