mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:08:22 +02:00
15 lines
132 B
ObjectPascal
15 lines
132 B
ObjectPascal
{$h+}
|
|
|
|
Type
|
|
TMyRec = Record
|
|
AString : AnsiString;
|
|
end;
|
|
PMyRec = ^TMyRec;
|
|
|
|
Var
|
|
M : PMyRec;
|
|
|
|
begin
|
|
M:=New(PmyRec);
|
|
end.
|