mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 07:58:04 +02:00
8 lines
97 B
ObjectPascal
8 lines
97 B
ObjectPascal
var
|
|
s : string[20];
|
|
begin
|
|
setlength(s,21);
|
|
if length(s)>sizeof(s)-1 then
|
|
halt(1);
|
|
end.
|