mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
6 lines
71 B
ObjectPascal
6 lines
71 B
ObjectPascal
program TestLength;
|
|
begin
|
|
if Length('') <> 0 then
|
|
halt(1);
|
|
end.
|