mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 23:31:49 +02:00
14 lines
239 B
ObjectPascal
14 lines
239 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.
|