mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 17:59:25 +02:00
11 lines
164 B
ObjectPascal
11 lines
164 B
ObjectPascal
|
|
var a:string;
|
|
|
|
begin
|
|
writeln('B:'='B:'); { debbuger evaluates this to FALSE }
|
|
|
|
a:='A:';
|
|
inc(a[1]);
|
|
writeln(a='B:'); { TRUE }
|
|
end.
|