mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 17:59:25 +02:00
18 lines
153 B
ObjectPascal
18 lines
153 B
ObjectPascal
{$H+}
|
|
Program AnsiTest;
|
|
|
|
Type
|
|
PS=^String;
|
|
|
|
var
|
|
P:PS;
|
|
Begin
|
|
New(P);
|
|
P^:='';
|
|
P^:=P^+'BLAH';
|
|
P^:=P^+' '+P^;
|
|
Writeln(P^);
|
|
Dispose(P);
|
|
end.
|
|
|