mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-25 17:59:06 +02:00
11 lines
113 B
ObjectPascal
11 lines
113 B
ObjectPascal
{$X+}
|
|
var
|
|
mystr : array[0..4] of char;
|
|
|
|
Begin
|
|
if mystr = #0#0#0#0 then
|
|
Begin
|
|
end;
|
|
mystr:=#0#0#0#0;
|
|
end.
|