mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 11:48:10 +02:00
14 lines
171 B
ObjectPascal
14 lines
171 B
ObjectPascal
{ may also crash/do weird error messages with the compiler }
|
|
var
|
|
min: char;
|
|
max: char;
|
|
i: char;
|
|
begin
|
|
min:='c';
|
|
max:='z';
|
|
if i in [min..max] then
|
|
Begin
|
|
end;
|
|
end.
|
|
|