mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-31 19:26:13 +02:00
15 lines
240 B
ObjectPascal
15 lines
240 B
ObjectPascal
{ Old file: tbs0130.pp }
|
|
{ in [..#255] problem OK 0.99.6 (PFV) }
|
|
|
|
var
|
|
c : char;
|
|
begin
|
|
c:=#91;
|
|
if c in [#64..#255] then
|
|
writeln('boe');
|
|
c:=#32;
|
|
if c in [#64..#255] then
|
|
writeln('boe');
|
|
end.
|
|
|